14
Il callback asincrono non è stato richiamato entro il timeout di 5000 ms specificato da jest.setTimeout
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, …