mirror of
https://github.com/vuejs/core.git
synced 2024-11-21 20:28:45 +00:00
10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
import { configDefaults, mergeConfig } from 'vitest/config'
|
|
import config from './vitest.config'
|
|
|
|
export default mergeConfig(config, {
|
|
test: {
|
|
name: 'unit',
|
|
exclude: [...configDefaults.exclude, '**/e2e/**'],
|
|
},
|
|
})
|