From 1d908b3a26fac313e678c91d654a4b5a3b87267e Mon Sep 17 00:00:00 2001 From: elweyn Date: Fri, 24 Mar 2023 00:45:05 +0100 Subject: [PATCH] refactor(backend): upgrade coverage to 85% --- backend/jest.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/jest.config.js b/backend/jest.config.js index 66a883b51..f2e2a556d 100644 --- a/backend/jest.config.js +++ b/backend/jest.config.js @@ -6,7 +6,7 @@ module.exports = { collectCoverageFrom: ['src/**/*.ts', '!**/node_modules/**', '!src/seeds/**', '!build/**'], coverageThreshold: { global: { - lines: 81, + lines: 85, }, }, setupFiles: ['/test/testSetup.ts'],