From 9dfa78c050bda5d0d922e85eeeb257b73916d80e Mon Sep 17 00:00:00 2001 From: MaxGenash Date: Thu, 29 Oct 2020 23:12:05 +0200 Subject: [PATCH] feat: increase coverage threshold --- jest.config.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jest.config.js b/jest.config.js index 48e35b97..6cebbfc1 100644 --- a/jest.config.js +++ b/jest.config.js @@ -7,10 +7,10 @@ module.exports = { coverageDirectory: './.coverage', coverageThreshold: { global: { - branches: 33, - functions: 47, - lines: 47, - statements: 47, + branches: 40, + functions: 50, + lines: 50, + statements: 50, }, }, moduleFileExtensions: ['js', 'json', 'node'],