Sto usando burattinaio e scherzo per eseguire alcuni test front-end.
I miei test sono i seguenti:
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);
});
A volte, quando eseguo i test, tutto funziona come previsto. Altre volte, ricevo un errore:
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)
Questo è strano perché:
Ho specificato che il timeout è 30000
La presenza o meno di questo errore è apparentemente molto casuale
Qualcuno può indovinare perché questo sta accadendo?