From 81b7bf446079999244c5ca3e79d54773a7e8faf6 Mon Sep 17 00:00:00 2001 From: David Luna Date: Tue, 6 Feb 2024 11:15:32 +0100 Subject: [PATCH] chore: remove unnecessary CLI flag for junit reports --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3093717..c899830 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "scripts": { "test": "node --test", "test:lcov": "node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=test-report-lcov.info", - "test:junit": "node --test --experimental-test-coverage --test-reporter=junit --test-reporter-destination=test-report-junit.xml", + "test:junit": "node --test --test-reporter=junit --test-reporter-destination=test-report-junit.xml", "test:ci": "node --test --experimental-test-coverage --test-reporter=./test/lcov-reporter.js --test-reporter-destination=test-report-lcov.info", "lcov": "cat test-report-lcov.info | coveralls", "lint": "npm run lint:js && npm run lint:ts",