From a1b583026937f38d41ebb10c4b51540dc999d8e3 Mon Sep 17 00:00:00 2001 From: Naz Date: Mon, 14 Nov 2022 16:33:56 +0700 Subject: [PATCH] Updated minimum coverage percentages refs https://github.com/TryGhost/Toolbox/issues/475 - Increased statements and lines minimum required numbers as we have increased out baseline and should keep the bar as hight as possible --- ghost/core/.c8rc.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/core/.c8rc.json b/ghost/core/.c8rc.json index c00b46b288..277e9c146d 100644 --- a/ghost/core/.c8rc.json +++ b/ghost/core/.c8rc.json @@ -6,10 +6,10 @@ "text-summary", "cobertura" ], - "statements": 57, + "statements": 61, "branches": 80, "functions": 51, - "lines": 57, + "lines": 61, "include": [ "core/{*.js,frontend,server,shared}" ],