From 2a0d7e4626a941391380e268571021fc6cb9d0d0 Mon Sep 17 00:00:00 2001 From: Timo De Meyst Date: Fri, 4 Apr 2025 18:04:14 +0200 Subject: [PATCH] actions: threshold voor coverage op 60% gezet --- frontend/vitest.config.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/vitest.config.ts b/frontend/vitest.config.ts index 9f561462..0611c658 100644 --- a/frontend/vitest.config.ts +++ b/frontend/vitest.config.ts @@ -14,6 +14,12 @@ export default mergeConfig( // If you want a coverage reports even if your tests are failing, include the reportOnFailure option reportOnFailure: true, exclude: ['**/*config*'], + thresholds: { + lines: 60, + branches: 60, + functions: 60, + statements: 60 + }, }, }, }),