From ff1c17d6615a79e5bbacfe8a9f8a232b80fa0876 Mon Sep 17 00:00:00 2001 From: Naz Date: Wed, 30 Nov 2022 10:41:32 +0700 Subject: [PATCH] Bumped e2e test coverage thresholds refs https://github.com/TryGhost/Ghost/commit/fc9f8aebc1287279e02d20a3b0147585ca40bbd8 - With integration & regression test suites included in the e2e coverage reports the coverage has jumped up nicely. We should keep the threshold as hight as possible from accidentally reducing the coverage quality --- ghost/core/.c8rc.e2e.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ghost/core/.c8rc.e2e.json b/ghost/core/.c8rc.e2e.json index a1dd55e303..26b87f524f 100644 --- a/ghost/core/.c8rc.e2e.json +++ b/ghost/core/.c8rc.e2e.json @@ -7,10 +7,10 @@ "cobertura" ], "reportsDir": "./coverage-e2e", - "statements": 78, - "branches": 80, - "functions": 80, - "lines": 79, + "statements": 86, + "branches": 84, + "functions": 87, + "lines": 86, "include": [ "core/{*.js,frontend,server,shared}" ],