From: Jérôme Benoit Date: Thu, 19 Mar 2026 11:55:08 +0000 (+0100) Subject: test(ui): raise coverage thresholds to match current levels X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=0c59cdc9b49a1dbc124c9319719aff96daae2996;p=e-mobility-charging-stations-simulator.git test(ui): raise coverage thresholds to match current levels statements: 87→91, branches: 85→89, functions: 80→83, lines: 87→91 --- diff --git a/ui/web/vitest.config.ts b/ui/web/vitest.config.ts index e94dcc54..fcb25b8b 100644 --- a/ui/web/vitest.config.ts +++ b/ui/web/vitest.config.ts @@ -24,10 +24,10 @@ export default mergeConfig( provider: 'v8', reporter: ['text', 'lcov'], thresholds: { - branches: 85, - functions: 80, - lines: 87, - statements: 87, + branches: 89, + functions: 83, + lines: 91, + statements: 91, }, }, environment: 'jsdom',