From 429f416c675dab3ca3275f727711c64ee30f12d6 Mon Sep 17 00:00:00 2001 From: "Nicholas H.Tollervey" Date: Fri, 27 Sep 2024 15:24:19 +0100 Subject: [PATCH] Increase timeout for heavy-load test. --- pyscript.core/tests/js_tests.spec.js | 1 + 1 file changed, 1 insertion(+) diff --git a/pyscript.core/tests/js_tests.spec.js b/pyscript.core/tests/js_tests.spec.js index 74be0cbc6e4..a17bb9ab5f2 100644 --- a/pyscript.core/tests/js_tests.spec.js +++ b/pyscript.core/tests/js_tests.spec.js @@ -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'); });