Increase Jest coverage thresholds to enforce higher test quality

This commit is contained in:
2025-11-02 07:35:50 +01:00
parent a460e0e4f2
commit 30dca45097

View File

@@ -31,10 +31,10 @@ const customJestConfig = {
],
coverageThreshold: {
global: {
branches: 70,
functions: 70,
lines: 70,
statements: 70,
branches: 85,
functions: 85,
lines: 90,
statements: 90,
},
},
}