我正在使用 Puppeteer 和 Jest 来运行一些前端测试。
我的测试如下:
describe("Profile Tab Exists and Clickable: /settings/user", () => {
test(`Assert that you can click the profile tab`, async () => {
await page.waitForSelector(PROFILE.TAB);
await page.click(PROFILE.TAB);
}, 30000);
});
有时,当我运行测试时,一切都按预期进行。其他时候,我收到一个错误:
超时 - 在 jest.setTimeout 指定的 5000 毫秒超时内未调用异步回调。
at node_modules/jest-jasmine2/build/queue_runner.js:68:21 <br/> at Timeout.callback [as _onTimeout] (node_modules/jsdom/lib/jsdom/browser/Window.js:633:19)
这很奇怪,因为:
我将超时指定为 30000
我是否收到此错误似乎非常随机
为什么会这样?