From c9659be2e931d13731b8b0010f576ab704ca4325 Mon Sep 17 00:00:00 2001 From: d-oit Date: Fri, 19 Jun 2026 21:41:23 +0200 Subject: [PATCH] test: raise coverage thresholds from 33-43% to 35-45% MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - branches: 33 → 35 - functions: 38 → 40 - lines: 43 → 45 - statements: 42 → 44 --- vitest.config.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vitest.config.ts b/vitest.config.ts index add5cd2..1287466 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -39,10 +39,10 @@ export default defineConfig({ 'src/features/export/pdf-styles.ts', ], thresholds: { - branches: 33, - functions: 38, - lines: 43, - statements: 42, + branches: 35, + functions: 40, + lines: 45, + statements: 44, }, }, },