2023-10-26 16:21:29 +08:00
|
|
|
import { mergeConfig } from 'vitest/config'
|
2023-01-26 22:53:39 +08:00
|
|
|
import config from './vitest.config'
|
|
|
|
|
2023-10-26 16:21:29 +08:00
|
|
|
export default mergeConfig(config, {
|
2023-01-26 22:53:39 +08:00
|
|
|
test: {
|
2024-04-24 18:31:45 +08:00
|
|
|
poolOptions: {
|
|
|
|
threads: {
|
|
|
|
singleThread: !!process.env.CI,
|
|
|
|
},
|
|
|
|
},
|
2024-05-21 08:43:46 +08:00
|
|
|
include: [
|
|
|
|
'packages/vue/__tests__/e2e/*.spec.ts',
|
|
|
|
'packages/vue-vapor/__tests__/e2e/*.spec.ts',
|
|
|
|
],
|
2023-01-26 22:53:39 +08:00
|
|
|
},
|
2023-10-26 16:21:29 +08:00
|
|
|
})
|