在Angular 9中,我们可以使用fakeAsync
和tick
函数来模拟等待函数进行单元测试。以下是一个示例解决方案:
首先,确保已经导入所需的测试工具:
import { ComponentFixture, TestBed, fakeAsync, tick } from '@angular/core/testing';
然后,在单元测试中使用fakeAsync
函数来包装测试代码,并使用tick
函数来模拟等待函数的时间:
it('should wait for async function', fakeAsync(() => {
let isCalled = false;
// 模拟一个异步函数
setTimeout(() => {
isCalled = true;
}, 1000);
// 使用tick来模拟等待1秒钟
tick(1000);
expect(isCalled).toBeTruthy();
}));
在上面的示例中,我们模拟了一个异步函数,稍等1秒后将isCalled
变量设置为true
。然后,我们使用tick
函数来模拟等待1秒钟。最后,我们断言isCalled
变量的值为true
,以确保等待函数被正确地调用。
请注意,fakeAsync
和tick
函数只能在it
块中使用,不能在beforeEach
或beforeAll
等生命周期钩子函数中使用。