14
jest.setTimeout에 의해 지정된 5000ms 시간 초과 내에 비동기 콜백이 호출되지 않았습니다.
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); }); 때로는 테스트를 실행할 때 모든 것이 예상대로 작동합니다. 다른 경우에는 …