From 4dfa32dd4ba546dfafb3d473ad1a1aaceff8dffe Mon Sep 17 00:00:00 2001 From: Max Date: Thu, 21 Apr 2022 10:19:59 -0400 Subject: [PATCH] Temp lower coverage threshold until new unit test added --- jest.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jest.config.js b/jest.config.js index 1273d62c1..e276f88f4 100644 --- a/jest.config.js +++ b/jest.config.js @@ -32,7 +32,7 @@ module.exports = { testMatch: ["**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"], coverageThreshold: { global: { - statements: 87, + statements: 86, // Got the go ahead from Mark to temporarily lower this. Taking out initialize component made the year,make,model and style coverage drop a bit. Once unit tests for license plate lookup, vin lookup and address lookup are in the coverage should go back up to 90 }, },