From 5a50ad37d936479d388bf152846ae54f776a3348 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Tue, 9 Jan 2024 23:08:35 +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 530accb..f968b12 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -24,10 +24,10 @@ export default mergeConfig( 'src/stories/**/*', ], thresholds: { - lines: 25, + lines: 84, // functions: 20, // has problems see https://github.com/vitest-dev/vitest/issues/3607 - branches: 60, - statements: 25, + branches: 92, + statements: 84, }, }, },