test(server): try to use threads instead of forks to avoid ELIFECYCLE issues in the CI

pull/2314/head
Elian Doran 2025-06-15 12:40:53 +07:00
parent 185652fb6e
commit 42ccdd1646
No known key found for this signature in database
1 changed files with 2 additions and 1 deletions

@ -15,6 +15,7 @@ export default defineConfig(() => ({
reportsDirectory: './test-output/vitest/coverage',
provider: 'v8' as const,
reporter: [ "text", "html" ]
}
},
pool: "threads"
},
}));