From 88eaebfd4984469ca277ce83ba472a3121778ed9 Mon Sep 17 00:00:00 2001 From: Trevor Buckner Date: Sun, 28 Jul 2024 18:00:33 -0400 Subject: [PATCH] Raise test coverage threshold This PR adds tests which means we are now covering a larger % of the codebase. Raise the coverage thresholds to match. --- package.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 11d31291f..c5563cca0 100644 --- a/package.json +++ b/package.json @@ -57,15 +57,15 @@ ], "coverageThreshold": { "global": { - "statements": 25, - "branches": 10, - "functions": 22, - "lines": 25 + "statements": 50, + "branches": 40, + "functions": 40, + "lines": 50 }, "server/homebrew.api.js": { - "statements": 65, + "statements": 70, "branches": 50, - "functions": 60, + "functions": 65, "lines": 70 } },