我想设置我的jest测试的时间。但是jest抱怨测试超时。
beforeEach(() => {
jest.useFakeTimers().setSystemTime(new Date('2020-01-01'))
})
误差
● Test suite failed to run
thrown: "Exceeded timeout of 5000 ms for a hook.
Use jest.setTimeout(newTimeout) to increase the timeout value, if this is a long-running test."
1条答案
按热度按时间osh3o9ms1#
会成功的
使用假定时器({高级定时器:真})