core/vitest.unit.config.ts
三咲智子 Kevin Deng bfe6b459d3
style: update format & lint config (#9162)
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>
2023-12-26 19:39:47 +08:00

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/**'],
},
})