test: meer exclude paths toegevoegd

This commit is contained in:
Timo De Meyst 2025-04-08 18:49:09 +02:00
parent 3ca063a721
commit 11f5592e2f
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ export default defineConfig({
reporter: ['text', 'json-summary', 'json'],
// If you want a coverage reports even if your tests are failing, include the reportOnFailure option
reportOnFailure: true,
exclude: ['**/*config*', '**/tests/**', 'src/*.ts'],
exclude: ['**/*config*', '**/tests/**', 'src/*.ts', '**/dist/**', '**/node_modules/**'],
thresholds: {
lines: 60,
branches: 60,

View file

@ -13,7 +13,7 @@ export default mergeConfig(
reporter: ["text", "json-summary", "json"],
// If you want a coverage reports even if your tests are failing, include the reportOnFailure option
reportOnFailure: true,
exclude: ["**/*config*"],
exclude: ["**/*config*", "**/tests/**", 'src/*.ts', '**/dist/**', '**/e2e/**', '**/*config*', '**/node_modules/**'],
thresholds: {
lines: 60,
branches: 60,