Bazı ön uç testleri yapmak için kuklacı ve jest kullanıyorum.
Testlerim aşağıdaki gibi görünüyor:
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);
});
Bazen, testleri yaptığımda her şey beklendiği gibi çalışır. Diğer zamanlarda bir hata alıyorum:
Timeout - Async callback was not invoked within the 5000ms timeout specified by jest.setTimeout.
at node_modules/jest-jasmine2/build/queue_runner.js:68:21
at Timeout.callback [as _onTimeout] (node_modules/jsdom/lib/jsdom/browser/Window.js:633:19)
Bu garip çünkü:
Zaman aşımını 30000 olarak belirledim
Bu hatayı alıp almamam çok rastgele görünüyor
Herkes bunun neden olduğunu tahmin edebilir mi?