We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d9cdce commit bdd8cb0Copy full SHA for bdd8cb0
vitest.config.ts
@@ -21,11 +21,19 @@ export default defineConfig({
21
snapshotFormat: {
22
escapeString: true,
23
},
24
+ // Pin to vitest@1 behavior: https://vitest.dev/guide/migration.html#default-pool-is-forks.
25
+ // TODO(serhalp) Remove this and fix hanging `next-app-without-config` fixture on Windows.
26
+ pool: 'threads',
27
poolOptions: {
28
threads: {
29
singleThread: true,
30
31
32
+ // Pin to vitest@1 behavior: https://vitest.dev/guide/migration.html#hooks-are-running-in-a-stack.
33
34
+ sequence: {
35
+ hooks: 'parallel',
36
+ },
37
coverage: {
38
provider: 'v8',
39
reporter: ['text', 'lcov'],
0 commit comments