aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--frontend-vanilla/vitest.config.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/frontend-vanilla/vitest.config.ts b/frontend-vanilla/vitest.config.ts
index 9695d57..160cf01 100644
--- a/frontend-vanilla/vitest.config.ts
+++ b/frontend-vanilla/vitest.config.ts
@@ -6,5 +6,8 @@ export default defineConfig({
environment: 'jsdom',
globals: true,
setupFiles: ['./src/setupTests.ts'],
+ // Limit concurrency to avoid resource exhaustion on the VM
+ fileParallelism: false,
+ pool: 'threads',
},
});