From cba4f5ee3d17b2eaa884a14eb1264eee1f0c1845 Mon Sep 17 00:00:00 2001 From: Katie Date: Tue, 30 Aug 2022 14:22:10 -0400 Subject: [PATCH] CSR-111 Temporarily lower test coverage threhold --- jest.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jest.config.js b/jest.config.js index c18fd3125..d9da86118 100644 --- a/jest.config.js +++ b/jest.config.js @@ -25,7 +25,8 @@ module.exports = { testMatch: ["**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"], coverageThreshold: { global: { - statements: 84, + // TODO after release/2022.09.15, raise this back up!! + statements: 80, // 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 }, },