From 0d4eadfd0b97f3a5120157b3014ddf340653b66a Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Tue, 9 Jan 2024 11:32:54 +0100 Subject: [PATCH] increase coverage requirement --- vitest.config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vitest.config.ts b/vitest.config.ts index e42e389..a038368 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -19,10 +19,10 @@ export default mergeConfig( 'src/stories/**/*', ], thresholds: { - lines: 17, + lines: 25, // functions: 20, // has problems see https://github.com/vitest-dev/vitest/issues/3607 - branches: 41, - statements: 17, + branches: 60, + statements: 25, }, }, },