Skip to content

Commit b8b71ad

Browse files
author
Benjamin E. Coe
authored
test: output from html report was overwriting lcov report (googleapis#22)
1 parent be6619f commit b8b71ad

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.c8rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"report-dir": "./.coverage",
3-
"reporter": ["text", "lcov", "html"],
3+
"reporter": ["text", "lcov"],
44
"exclude": [
55
"**/*-test",
66
"**/.coverage",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
"main": "./build/src/index.js",
66
"bin": "./build/src/bin/release-please.js",
77
"scripts": {
8-
"test": "cross-env ENVIRONMENT=test c8 --reporter=html --reporter=text mocha --recursive --timeout=5000 build/test",
8+
"test": "cross-env ENVIRONMENT=test c8 mocha --recursive --timeout=5000 build/test",
99
"docs-test": "echo add docs tests",
1010
"system-test": "cross-env ENVIRONMENT=test mocha --timeout=20000 build/system-test",
1111
"presystem-test": "npm run compile",
12-
"test:all": "cross-env ENVIRONMENT=test c8 --reporter=html --reporter=text mocha --recursive --timeout=20000 build/system-test build/test",
12+
"test:all": "cross-env ENVIRONMENT=test c8 mocha --recursive --timeout=20000 build/system-test build/test",
1313
"test:snap": "SNAPSHOT_UPDATE=1 npm test",
1414
"clean": "gts clean",
1515
"prepare": "npm run compile",

0 commit comments

Comments
 (0)