我正在为 React 应用程序编写集成测试,即一起测试许多组件的测试,我想模拟对外部服务的任何调用。
问题是测试似乎在执行异步回调之前执行,导致我的测试失败。
有没有办法解决?我可以以某种方式等待调用异步代码完成吗?
这是一些糟糕的伪代码来说明我的观点。
我想测试一下,当我挂载 Parent 时,它的 Child 组件呈现从外部服务返回的内容,我将对此进行模拟。
class Parent extends component
{
render ()
{
<div>
<Child />
</div>
}
}
class Child extends component
{
DoStuff()
{
aThingThatReturnsAPromise().then((result) => {
Store.Result = result
})
}
render()
{
DoStuff()
return(<div>{Store.Result}</div>)
}
}
function aThingThatReturnsAPromise()
{
return new Promise(resolve =>{
eternalService.doSomething(function callback(result) {
resolve(result)
}
}
}
当我在我的测试中这样做时,它失败了,因为它在回调被触发之前被执行了。
jest.mock('eternalService', () => {
return jest.fn(() => {
return { doSomething: jest.fn((cb) => cb('fakeReturnValue');
});
});
describe('When rendering Parent', () => {
var parent;
beforeAll(() => {
parent = mount(<Parent />)
});
it('should display Child with response of the service', () => {
expect(parent.html()).toMatch('fakeReturnValue')
});
});
我该如何测试?我知道 angular 使用 zonejs 解决了这个问题,React 中是否有等效的方法?