From 270046f16a19f90f5757ed51e5936fcc8fea2733 Mon Sep 17 00:00:00 2001 From: Phillip9587 Date: Mon, 10 Feb 2025 21:53:48 +0100 Subject: [PATCH] ci: use `lcovonly` reporter for the `test-ci` script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ef0f54d7..05966998 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "scripts": { "lint": "eslint .", "test": "mocha --reporter spec --check-leaks --bail test/", - "test-ci": "nyc --reporter=lcov --reporter=text npm test", + "test-ci": "nyc --reporter=lcovonly --reporter=text npm test", "test-cov": "nyc --reporter=html --reporter=text npm test" } }