From 357add25777ea1978365637a15f110385dd97792 Mon Sep 17 00:00:00 2001 From: Arsalan Sufi Date: Thu, 5 Oct 2023 22:09:39 -0400 Subject: [PATCH] Adjust VxCentralScan frontend code coverage thresholds To account for removal of and --- apps/central-scan/frontend/jest.config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/central-scan/frontend/jest.config.js b/apps/central-scan/frontend/jest.config.js index f9b6a830514..730a10e2636 100644 --- a/apps/central-scan/frontend/jest.config.js +++ b/apps/central-scan/frontend/jest.config.js @@ -13,10 +13,10 @@ module.exports = { ], coverageThreshold: { global: { - statements: 81, + statements: 80, branches: 68, - functions: 70, - lines: 81, + functions: 69, + lines: 80, }, }, resetMocks: true,