From 9dd6b5fd1de6d1faf4439bc748bbdb4a53289b08 Mon Sep 17 00:00:00 2001 From: aahna-ashina <95955389+aahna-ashina@users.noreply.github.com> Date: Wed, 7 Sep 2022 17:24:57 +0800 Subject: [PATCH] test: reduce coverage threshold to 80% (#6) --- server/jest.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/jest.config.js b/server/jest.config.js index c8d3310..ff5ff79 100644 --- a/server/jest.config.js +++ b/server/jest.config.js @@ -4,7 +4,7 @@ module.exports = { testEnvironment: 'node', coverageThreshold: { global: { - lines: 81.50 + lines: 80.00 } } }