From 0c59cdc9b49a1dbc124c9319719aff96daae2996 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Thu, 19 Mar 2026 12:55:08 +0100 Subject: [PATCH] test(ui): raise coverage thresholds to match current levels MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit statements: 87→91, branches: 85→89, functions: 80→83, lines: 87→91 --- ui/web/vitest.config.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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', -- 2.43.0