From e4b7afd47cca03a95106476ff2f2a964f7ddfdc7 Mon Sep 17 00:00:00 2001 From: Claudio Benedetti Date: Mon, 15 Jan 2024 16:46:22 +0100 Subject: [PATCH] coverage threshold to 90 --- jest.config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jest.config.ts b/jest.config.ts index 4b95df6..b9df470 100644 --- a/jest.config.ts +++ b/jest.config.ts @@ -22,9 +22,9 @@ export default { ], coverageThreshold: {global: { branches: 90, - functions: 95, - lines: 95, - statements: 95 + functions: 90, + lines: 90, + statements: 90 }}, moduleNameMapper: { '^rxjs': ['rxjs']