Skip to content

Commit 357cf52

Browse files
committed
fix: revert vitest config to single process for integration tests
1 parent e0e06be commit 357cf52

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

vitest.config.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ import { defineConfig } from 'vitest/config';
22

33
export default defineConfig({
44
test: {
5+
pool: 'forks',
6+
poolOptions: {
7+
forks: {
8+
singleFork: true, // Run all tests in a single process
9+
},
10+
},
511
coverage: {
612
provider: 'v8',
713
reportsDirectory: './coverage',

0 commit comments

Comments
 (0)