From 9323cfef5eae1e657535c4ae7dcf6f75f03361ab Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Fri, 7 Nov 2025 14:45:17 -0800 Subject: [PATCH] Fix: Increase test timeout to 12 seconds --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 53b0cea..48a854c 100644 --- a/index.html +++ b/index.html @@ -64,7 +64,7 @@ const lMod = await import(`./tests/${test}/outputs/${sModel}.js`); await tMod.default.runTest(lMod.default); })(); - const timeout = new Promise((_, r) => setTimeout(() => r(new Error('Timeout')), 8000)); + const timeout = new Promise((_, r) => setTimeout(() => r(new Error('Timeout')), 12000)); await Promise.race([testPromise, timeout]); itemHTML = `✅ ${test}`; } catch (e) {