diff --git a/.github/actions/unit-tests/action.yml b/.github/actions/unit-tests/action.yml index b7105332f..02ac242d7 100644 --- a/.github/actions/unit-tests/action.yml +++ b/.github/actions/unit-tests/action.yml @@ -11,5 +11,4 @@ runs: - name: Run tests run: | npm run test:unit - cat ./coverage/lcov.info | ./node_modules/.bin/codecov shell: bash diff --git a/package.json b/package.json index e86bb651d..f1c01e90a 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "scripts": { "prepublishOnly": "npm run build", "test": "npm run test:lint && npm run test:unit && npm run test:functional", - "test:unit": "nyc --reporter=text-summary --reporter=lcov mocha", + "test:unit": "nyc --reporter=text-summary mocha", "test:functional": "cucumber-js --exit --fail-fast", "test:lint": "npm run test:lint:js && npm run test:lint:ts", "test:lint:js": "eslint --max-warnings=0 ./src ./test ./features",