From fe90db84fcb7c2db95cbb7abc699d2266b6f9fca Mon Sep 17 00:00:00 2001 From: Oscar Dominguez Date: Fri, 4 Oct 2024 00:13:00 +0200 Subject: [PATCH] test(coverage): set the bar to the current levels of coverage --- vite.config.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/vite.config.js b/vite.config.js index 3e9cfdeb..6b8b268c 100644 --- a/vite.config.js +++ b/vite.config.js @@ -6,8 +6,10 @@ export default defineConfig({ include: ["src/**/*.ts"], reporter: ["html"], thresholds: { - 100: true, + lines: 88.88, + functions: 75, + statements: 88.88, }, }, }, -}); \ No newline at end of file +});