mirror of https://github.com/vuejs/core.git
11 lines
231 B
TypeScript
11 lines
231 B
TypeScript
|
import { UserConfig, configDefaults } from 'vitest/config'
|
||
|
import config from './vitest.config'
|
||
|
|
||
|
export default {
|
||
|
...config,
|
||
|
test: {
|
||
|
...config.test,
|
||
|
exclude: [...configDefaults.exclude, '**/e2e/**']
|
||
|
}
|
||
|
} as UserConfig
|