From f8d90a44548fa77eaff7a44a5c1f5ab29924c1ac Mon Sep 17 00:00:00 2001 From: Patrick McElhaney Date: Tue, 23 May 2023 18:11:11 -0400 Subject: [PATCH] increase uncovered statement covererage threshold --- jest.config.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/jest.config.json b/jest.config.json index 4f9737de..56b14b59 100644 --- a/jest.config.json +++ b/jest.config.json @@ -1,9 +1,12 @@ - { "testEnvironment": "node", "collectCoverage": true, - "collectCoverageFrom": ["src/**/*.{js,jsx,ts,tsx}", "!**/node_modules/**", "!**/*.d.ts"], + "collectCoverageFrom": [ + "src/**/*.{js,jsx,ts,tsx}", + "!**/node_modules/**", + "!**/*.d.ts" + ], "coverageProvider": "v8", "coverageThreshold": { @@ -11,7 +14,7 @@ "branches": 45, "functions": 49, "lines": 54, - "statements": -300 + "statements": -301 } } }