mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-04 06:02:50 +08:00
22 lines
493 B
TypeScript
22 lines
493 B
TypeScript
import { defineConfig, mergeConfig, configDefaults } from 'vitest/config'
|
|
|
|
import viteConfig from './vite.config'
|
|
|
|
export default defineConfig((configEnv) =>
|
|
mergeConfig(
|
|
viteConfig(configEnv),
|
|
defineConfig({
|
|
test: {
|
|
include: ['./__test__/**/*.(spec).(ts|tsx)'],
|
|
exclude: [
|
|
...configDefaults.exclude,
|
|
'**/src/**',
|
|
'./__test__/utils/**/*',
|
|
],
|
|
environment: 'happy-dom',
|
|
globals: true,
|
|
},
|
|
}),
|
|
),
|
|
)
|