mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-08-03 11:07:00 -04:00
17 lines
429 B
TypeScript
17 lines
429 B
TypeScript
import { defineVitestConfig } from '@nuxt/test-utils/config';
|
|
|
|
export default defineVitestConfig({
|
|
test: {
|
|
exclude: ['new', 'node_modules'],
|
|
coverage: {
|
|
include: ['plugins/**', 'server/**', 'src/**', 'store/**'],
|
|
reporter: ['text', 'cobertura'],
|
|
},
|
|
environmentOptions: {
|
|
nuxt: {
|
|
domEnvironment: 'jsdom',
|
|
},
|
|
},
|
|
},
|
|
});
|