如何使用Jest测试异步组件?

如何使用Jest测试异步组件?,第1张

如何使用Jest测试异步组件

Jest有模拟假冒时间旅行的方法,要在您的情况下使用它,我想您可以按照以下样式更改代码:

import { API } from 'api';import { API as mockAPI } from '__mocks/api';API.get = jest.fn().mockImplementation(mockAPI.get);jest.useFakeTimers(); // this statement makes sure you use fake timersdescribe('Something Component', () => {  it('renders after data loads', () => {    const wrapper = mount(<Something />);    // skip forward to a certain time    jest.runTimersToTime(1);    expect(mountToJson(wrapper)).toMatchSnapshot();  });});

另外,

jest.runTimersToTime()
您也可以使用
jest.runAllTimers()



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5173559.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-18
下一篇 2022-11-18

发表评论

登录后才能评论

评论列表(0条)

保存