18 lines
476 B
JavaScript
18 lines
476 B
JavaScript
|
|
import { defineConfig } from 'vitest/config'
|
||
|
|
import vue from '@vitejs/plugin-vue'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [vue()],
|
||
|
|
test: {
|
||
|
|
environment: 'happy-dom',
|
||
|
|
setupFiles: ['./tests/setup.js'],
|
||
|
|
include: ['tests/unit/**/*.test.js', 'tests/integration/**/*.test.js'],
|
||
|
|
coverage: {
|
||
|
|
provider: 'v8',
|
||
|
|
reporter: ['text', 'html'],
|
||
|
|
include: ['src/utils/**', 'src/pages/**', 'src/components/**'],
|
||
|
|
exclude: ['src/data/**'],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
})
|