From 19dc025240e6c6f34f5161ed89790a7150d1c5e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joseph-Andr=C3=A9=20Turk?= Date: Fri, 18 Oct 2024 18:22:53 +0200 Subject: [PATCH] chore: lower threshold for jest coverage --- jest.config.cjs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jest.config.cjs b/jest.config.cjs index 709f56b..14fa012 100644 --- a/jest.config.cjs +++ b/jest.config.cjs @@ -32,9 +32,9 @@ module.exports = { transformIgnorePatterns: ['/node_modules/'], coverageThreshold: { global: { - branches: 60, - functions: 70, - lines: 70, + branches: 50, + functions: 60, + lines: 60, }, }, };