mirror of
https://github.com/vuejs/core.git
synced 2024-11-22 04:51:10 +00:00
14 lines
284 B
TypeScript
14 lines
284 B
TypeScript
import { mergeConfig } from 'vitest/config'
|
|
import config from './vitest.config'
|
|
|
|
export default mergeConfig(config, {
|
|
test: {
|
|
poolOptions: {
|
|
threads: {
|
|
singleThread: !!process.env.CI,
|
|
},
|
|
},
|
|
include: ['packages/vue/__tests__/e2e/*.spec.ts'],
|
|
},
|
|
})
|