From 93c385eb010634e31621cb1ca42ebe36ed4aa172 Mon Sep 17 00:00:00 2001 From: Hewerton Date: Mon, 20 May 2024 14:54:00 -0300 Subject: [PATCH] chore: coverage percentage adjust --- vitest.config.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vitest.config.ts b/vitest.config.ts index c4ff6b0..e70ff4f 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -18,10 +18,10 @@ export default defineConfig({ reporter: ['html', 'json-summary', 'json', 'text-summary'], reportOnFailure: true, thresholds: { - branches: 100, - functions: 100, - lines: 100, - statements: 100, + branches: 85, + functions: 85, + lines: 85, + statements: 85, }, }, globals: true,