test(server): disable file parallelism to avoid CI failures

This commit is contained in:
Elian Doran 2025-06-15 14:00:54 +03:00
parent f8c1dabfd5
commit 17f27e520c
No known key found for this signature in database

View File

@ -16,6 +16,7 @@ export default defineConfig(() => ({
provider: 'v8' as const, provider: 'v8' as const,
reporter: [ "text", "html" ] reporter: [ "text", "html" ]
}, },
fileParallelism: false,
pool: "threads" pool: "threads"
}, },
})); }));