From 71a4c899d68ebd34c32b3a104fb2a50e9183e03a Mon Sep 17 00:00:00 2001 From: Anthony Sneed Date: Sat, 22 Jun 2019 18:26:43 -0500 Subject: [PATCH] Decrease test coverage thresholds. --- jest.config.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jest.config.js b/jest.config.js index 9588f85..172fc60 100644 --- a/jest.config.js +++ b/jest.config.js @@ -11,10 +11,10 @@ const config = { testPathIgnorePatterns: ['dist', 'src/models'], coverageThreshold: { global: { - branches: 80, - functions: 80, - lines: 80, - statements: 80, + branches: 50, + functions: 50, + lines: 50, + statements: 50, }, } }