From e1f9783b2b7d0097418a0fc9f37df5629db195ef Mon Sep 17 00:00:00 2001 From: Antariksh Mahajan Date: Mon, 12 Oct 2020 16:28:05 +0800 Subject: [PATCH] chore: update threshold to 25 (#457) --- jest.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jest.config.js b/jest.config.js index 3e2e02efb7..b41144f060 100644 --- a/jest.config.js +++ b/jest.config.js @@ -13,7 +13,7 @@ module.exports = { coveragePathIgnorePatterns: ['./node_modules/', './tests'], coverageThreshold: { global: { - statements: 12, // Increase this percentage as test coverage improves + statements: 25, // Increase this percentage as test coverage improves }, }, }