19 lines
347 B
TypeScript
19 lines
347 B
TypeScript
import { defineVitestConfig } from '@nuxt/test-utils/config'
|
|
|
|
export default defineVitestConfig({
|
|
test: {
|
|
environment: 'nuxt',
|
|
exclude: [
|
|
'**/.direnv/**',
|
|
'**/.devenv/**',
|
|
'**/node_modules/**'
|
|
],
|
|
coverage: {
|
|
provider: 'v8',
|
|
enabled: true,
|
|
reporter: ['lcovonly']
|
|
},
|
|
watch: false
|
|
}
|
|
})
|