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 + }, }, }, }),