♻️ Pull request comments

This commit is contained in:
Manuel
2023-03-22 13:29:00 +01:00
parent 4c9d1a1c01
commit 0d6346c73a
7 changed files with 24 additions and 5 deletions

View File

@@ -6,15 +6,15 @@ import { defineConfig } from 'vitest/config';
export default defineConfig({
plugins: [react()],
test: {
environment: 'jsdom',
environment: 'happy-dom',
coverage: {
provider: 'c8',
reporter: ['html'],
all: true,
exclude: ['.next/', '.yarn/', 'data/']
exclude: ['.next/', '.yarn/', 'data/'],
},
setupFiles: [
"./setupVitest.ts"
]
'./tests/setupVitest.ts',
],
},
});