core/vitest.unit.config.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
226 B
TypeScript
Raw Normal View History

import { configDefaults, mergeConfig } from 'vitest/config'
import config from './vitest.config'
export default mergeConfig(config, {
test: {
name: 'unit',
exclude: [...configDefaults.exclude, '**/e2e/**'],
},
})