Skip to content

Commit 8ee69e7

Browse files
committedApr 24, 2024
ci: use single thread for e2e tests on ci
1 parent 064e82f commit 8ee69e7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎vitest.e2e.config.ts

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ import config from './vitest.config'
33

44
export default mergeConfig(config, {
55
test: {
6+
poolOptions: {
7+
threads: {
8+
singleThread: !!process.env.CI,
9+
},
10+
},
611
include: ['packages/vue/__tests__/e2e/*.spec.ts'],
712
},
813
})

0 commit comments

Comments
 (0)
Please sign in to comment.