14
La devolución de llamada asincrónica no se invocó dentro del tiempo de espera de 5000 ms especificado por jest.setTimeout
Estoy usando titiritero y broma para ejecutar algunas pruebas de front-end. Mis pruebas se ven de la siguiente manera: 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 veces, cuando …