We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent deab83a commit 437e90bCopy full SHA for 437e90b
packages/node/vitest.config.ts
@@ -3,6 +3,8 @@ import { defineConfig } from 'vitest/config';
3
// We need to define an empty config to be part of the vitest works
4
export default defineConfig({
5
test: {
6
- silent: false
+ silent: false,
7
+ // This doesn't make the tests considerably slower. It may improve reliability for GH actions.
8
+ fileParallelism: false
9
}
10
});
0 commit comments