我试图用TypeScript和Sinon测试这个函数的失败情况,但是我不知道怎么做。有帮助吗?
public async findById(id: number): Promise<UserModel> {
const user = await this._userModel.findByPk(id);
if (!user) throw new NotFound('User not found');
return user;
}
我试图用TypeScript和Sinon测试这个函数的失败情况,但是我不知道怎么做。有帮助吗?
public async findById(id: number): Promise<UserModel> {
const user = await this._userModel.findByPk(id);
if (!user) throw new NotFound('User not found');
return user;
}
1条答案
按热度按时间5kgi1eie1#
弄清楚并最终创建单元和集成测试:
整合:
单位: