管道内的测试标签操作员

时间:2019-12-02 19:16:04

标签: javascript angular angular-testing

我是测试新手。我有伊斯坦布尔的以下报告:

report

这是我到目前为止的测试

    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?

0 个答案:

没有答案