From 3bb68f0f984475da8ca3fe4d772cb5c5ca5a4778 Mon Sep 17 00:00:00 2001 From: Karan Shah Date: Thu, 17 Feb 2022 13:20:14 +0000 Subject: [PATCH] Remove coverage checks because they are wrong. https://github.com/backstage/backstage/runs/5231780015?check_suite_focus=true Given this commit which should be at 100% for the above error: https://github.com/backstage/backstage/pull/9605/commits/b84c644fb99378fecb621617f8f4d41218fd92bb Signed-off-by: Karan Shah --- plugins/airbrake-backend/package.json | 16 +--------------- plugins/airbrake/package.json | 11 +---------- 2 files changed, 2 insertions(+), 25 deletions(-) diff --git a/plugins/airbrake-backend/package.json b/plugins/airbrake-backend/package.json index 0e94e6d998..ea7065d847 100644 --- a/plugins/airbrake-backend/package.json +++ b/plugins/airbrake-backend/package.json @@ -40,19 +40,5 @@ "dist", "config.d.ts" ], - "configSchema": "config.d.ts", - "jest": { - "coverageThreshold": { - "global": { - "functions": 100, - "lines": 100, - "statements": 100 - } - }, - "coveragePathIgnorePatterns": [ - "standaloneServer.ts", - "index.ts", - "run.ts" - ] - } + "configSchema": "config.d.ts" } diff --git a/plugins/airbrake/package.json b/plugins/airbrake/package.json index 75844a483c..033e10db86 100644 --- a/plugins/airbrake/package.json +++ b/plugins/airbrake/package.json @@ -57,14 +57,5 @@ }, "files": [ "dist" - ], - "jest": { - "coverageThreshold": { - "global": { - "functions": 100, - "lines": 100, - "statements": 100 - } - } - } + ] }