mirror of
https://github.com/vuejs/core.git
synced 2024-11-22 04:51:10 +00:00
bfe6b459d3
Co-authored-by: 丶远方 <yangpanteng@gmail.com> Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe> Co-authored-by: Guo Xingjun <99574369+Plumbiu@users.noreply.github.com>
9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
import { configDefaults, mergeConfig } from 'vitest/config'
|
|
import config from './vitest.config'
|
|
|
|
export default mergeConfig(config, {
|
|
test: {
|
|
exclude: [...configDefaults.exclude, '**/e2e/**'],
|
|
},
|
|
})
|