actions: threshold voor coverage op 60% gezet

This commit is contained in:
Timo De Meyst 2025-04-04 18:04:14 +02:00
parent 9c02857718
commit 2a0d7e4626

View file

@ -14,6 +14,12 @@ export default mergeConfig(
// If you want a coverage reports even if your tests are failing, include the reportOnFailure option // If you want a coverage reports even if your tests are failing, include the reportOnFailure option
reportOnFailure: true, reportOnFailure: true,
exclude: ['**/*config*'], exclude: ['**/*config*'],
thresholds: {
lines: 60,
branches: 60,
functions: 60,
statements: 60
},
}, },
}, },
}), }),