我是测试新手。我有伊斯坦布尔的以下报告:
这是我到目前为止的测试
fit('[sendForm()] should call createTenant() if state.id is falsy', () => {
const fakeForm = buildFakeForm(true);
component.state.form = fakeForm;
fixture.detectChanges();
spyOn(toastService, 'showToast');
spyOn(component, 'createTenant').and.callThrough();
component.sendForm();
expect(toastService.showToast).toHaveBeenCalled();
});
但是我的测试失败了,我也不知道为什么。 是否有任何提示让报告涵盖功能showToast?