15 lines
323 B
JavaScript
15 lines
323 B
JavaScript
import { defineConfig } from 'vitest/config'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
test: {
|
|
environment: 'node',
|
|
include: ['tests/**/*.test.js'],
|
|
coverage: {
|
|
provider: 'v8',
|
|
include: ['src/utils/**/*.js', 'src/composables/**/*.js'],
|
|
},
|
|
},
|
|
})
|