From 30dca45097d832dea89cfe3353da4e6e16de1ee6 Mon Sep 17 00:00:00 2001 From: Felipe Cardoso Date: Sun, 2 Nov 2025 07:35:50 +0100 Subject: [PATCH] Increase Jest coverage thresholds to enforce higher test quality --- frontend/jest.config.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/jest.config.js b/frontend/jest.config.js index 5d26195..c2734b8 100644 --- a/frontend/jest.config.js +++ b/frontend/jest.config.js @@ -31,10 +31,10 @@ const customJestConfig = { ], coverageThreshold: { global: { - branches: 70, - functions: 70, - lines: 70, - statements: 70, + branches: 85, + functions: 85, + lines: 90, + statements: 90, }, }, }