mirror of
https://github.com/IT4Change/boilerplate-frontend.git
synced 2025-12-13 07:35:53 +00:00
15 lines
301 B
TypeScript
15 lines
301 B
TypeScript
import { defineConfig, mergeConfig } from 'vitest/config'
|
|
|
|
import viteConfig from './vite.config'
|
|
|
|
export default mergeConfig(
|
|
viteConfig,
|
|
defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'jsdom',
|
|
setupFiles: ['tests/mock.$t.ts', 'tests/plugin.vuetify.ts'],
|
|
},
|
|
}),
|
|
)
|