From 645b698f37864b8ddbd31d902aa3c3948f331056 Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Tue, 2 Jul 2024 11:39:54 -0700 Subject: [PATCH] Reduce coverage threshold --- bin/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/test.js b/bin/test.js index 16248955..b6492454 100644 --- a/bin/test.js +++ b/bin/test.js @@ -6,7 +6,7 @@ const cp = require('child_process'); const path = require('path'); -const COVERAGE_LINES_THRESHOLD = 60; +const COVERAGE_LINES_THRESHOLD = 40; // Add `out` to the NODE_PATH so absolute paths can be resolved. const env = { ...process.env };