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) {