Increase timeout for heavy-load test. (#2190)

This commit is contained in:
Nicholas Tollervey
2024-09-27 15:46:57 +01:00
committed by GitHub
parent c1849d28e0
commit 532ac0c80f

View File

@@ -94,6 +94,7 @@ test('MicroPython + JS Storage', async ({ page }) => {
});
test('MicroPython + workers', async ({ page }) => {
test.setTimeout(120*1000); // Increase timeout for this test.
await page.goto('http://localhost:8080/tests/javascript/workers/index.html');
await page.waitForSelector('html.mpy.py');
});