gpt4 book ai didi

angular - toHaveBeenCalled() 返回未定义

转载 作者:行者123 更新时间:2023-11-28 21:03:41 25 4
gpt4 key购买 nike

据我所知, Jasmine 的 .toHaveBeenCalled() Matcher 返回一个 Promise,该 Promise 在函数被调用时被解析。实际上对我来说,它返回未定义:

it('should show the first entries', () => {
expect(contentfulService.first)
.toHaveBeenCalled()
.then(() => {
expect(component.entries).toBe(entriesMock);
});
});

contentfulService 的 first 方法是这样被监视的:

contentfulService = TestBed.get(ContentfulService);
spyOn(contentfulService, 'first').and.callThrough();

规范没有告诉我:

TypeError: Cannot read property 'then' of undefined

我仔细检查了一下。这肯定是返回未定义的 toHaveBeenCalled() 的结果。为什么?我是不是弄错了什么?

最佳答案

toHaveBeenCalled 是一种断言方法(如 toBetoEqual)。它是一种同步方法,如果未调用模拟并返回未定义,则测试失败。

通常您会在测试结束时调用它来验证您的代码是否按预期执行。它并不意味着用于流量控制。

关于angular - toHaveBeenCalled() 返回未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52521059/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com