From 8f3c6af38fc556f05c89a30dee145a76de62d558 Mon Sep 17 00:00:00 2001 From: Dermot Duffy Date: Sun, 3 Mar 2024 15:54:18 -0800 Subject: [PATCH] Update test thresholds. New vitest versions are much better at calculating the denominator, test coverage has actually improved in this PR, but much more code is detected. --- vite.config.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index c22c0b38..94aecf74 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -14,10 +14,10 @@ export default defineConfig({ // back-sliding. thresholds: { autoUpdate: true, - statements: 73.59, - branches: 63.6, - functions: 74.86, - lines: 73.48, + statements: 51.11, + branches: 43.04, + functions: 51.03, + lines: 51.91, }, }, },