From d576a3c5012ab8c9c5aa36be1f549965ebce3318 Mon Sep 17 00:00:00 2001 From: Masafumi Koba <473530+ybiquitous@users.noreply.github.com> Date: Sat, 23 Mar 2024 01:56:40 +0900 Subject: [PATCH] Decrease branch coverage's threshold a bit --- test/unit/jest.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/jest.config.js b/test/unit/jest.config.js index 90ec78f2..9ceaf026 100644 --- a/test/unit/jest.config.js +++ b/test/unit/jest.config.js @@ -16,7 +16,7 @@ const config = { collectCoverage: true, coverageThreshold: { global: { - branches: 100, + branches: 99, functions: 100, lines: 100, statements: 100,