Browse Source
ci: use single thread for e2e tests on ci
pull/10786/head
Evan You
1 year ago
No known key found for this signature in database
GPG Key ID: B9D421896CA450FB
1 changed files with
5 additions and
0 deletions
-
vitest.e2e.config.ts
|
|
@ -3,6 +3,11 @@ import config from './vitest.config' |
|
|
|
|
|
|
|
export default mergeConfig(config, { |
|
|
|
test: { |
|
|
|
poolOptions: { |
|
|
|
threads: { |
|
|
|
singleThread: !!process.env.CI, |
|
|
|
}, |
|
|
|
}, |
|
|
|
include: ['packages/vue/__tests__/e2e/*.spec.ts'], |
|
|
|
}, |
|
|
|
}) |