Skip to content

Commit a600aa6

Browse files
committed
Disable parallelism for node tests
1 parent 1ee8b98 commit a600aa6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/node/vitest.config.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ import { defineConfig } from 'vitest/config';
33
// We need to define an empty config to be part of the vitest works
44
export default defineConfig({
55
test: {
6-
silent: false
6+
silent: false,
7+
// This doesn't make the tests considerably slower. It may improve reliability for GH actions.
8+
fileParallelism: false
79
}
810
});

0 commit comments

Comments
 (0)