From 6dfa18414ac9075ab5f15b6bf2607a9ce8ff68d4 Mon Sep 17 00:00:00 2001 From: David Luzar <5153846+dwelle@users.noreply.github.com> Date: Tue, 24 Sep 2024 14:01:28 +0200 Subject: [PATCH] test: decrease min coverage thresholds (#8541) --- vitest.config.mts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vitest.config.mts b/vitest.config.mts index 5e7485fb9..1dadf85d2 100644 --- a/vitest.config.mts +++ b/vitest.config.mts @@ -19,10 +19,10 @@ export default defineConfig({ // Additionally the thresholds also needs to be updated slightly as a result of this change ignoreEmptyLines: false, thresholds: { - lines: 66, + lines: 60, branches: 70, functions: 63, - statements: 66, + statements: 60, }, }, },