From 1b9100a7f7644ff93b5bc00a3aea6cfe32d949fa Mon Sep 17 00:00:00 2001 From: Felipe Knorr Kuhn <100320+knorrium@users.noreply.github.com> Date: Thu, 7 Jul 2022 12:49:21 -0700 Subject: [PATCH] Reduce the coverage threshold to 1% --- backend/jest.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/jest.config.ts b/backend/jest.config.ts index d34060fb9..5576bfe80 100644 --- a/backend/jest.config.ts +++ b/backend/jest.config.ts @@ -10,7 +10,7 @@ const config: Config.InitialOptions = { coverageProvider: "v8", coverageThreshold: { global: { - lines: 90 + lines: 1 } } }