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: { coverageThreshold: {
global: { global: {
branches: 70, branches: 85,
functions: 70, functions: 85,
lines: 70, lines: 90,
statements: 70, statements: 90,
}, },
}, },
} }