这是我在 TypeScript 中的代码片段:
let myService: MyService;
let myController: MyController;
beforeAll(async function () {
myService = new MyService(null);
myController = new MyController(myService);
});
it("should fail due to any 'MyService' error", () => {
jest.spyOn(myService, 'create').mockImplementation(() => {
throw new Error(); // ! the test fails here
});
expect(myController.create(data)).toThrowError(Error);
});
的create
方法MyController
不是 async,也不是 of MyService
:两者都只是常规方法。现在,当我尝试运行此测试时,它在抛出异常的模拟方法的行上失败:throw new Error()
并且只有当我使用这样的create
方法调用包装时它才能正常工作:try/catch
try {
expect(myController.create(data)).toThrowError(Error);
}
catch { }
我觉得这很奇怪。它不应该在没有try/catch
设计包装的情况下工作吗?