Skip to content

Commit

Permalink
test: output from html report was overwriting lcov report (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoe authored May 8, 2019
1 parent be6619f commit b8b71ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .c8rc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"report-dir": "./.coverage",
"reporter": ["text", "lcov", "html"],
"reporter": ["text", "lcov"],
"exclude": [
"**/*-test",
"**/.coverage",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"main": "./build/src/index.js",
"bin": "./build/src/bin/release-please.js",
"scripts": {
"test": "cross-env ENVIRONMENT=test c8 --reporter=html --reporter=text mocha --recursive --timeout=5000 build/test",
"test": "cross-env ENVIRONMENT=test c8 mocha --recursive --timeout=5000 build/test",
"docs-test": "echo add docs tests",
"system-test": "cross-env ENVIRONMENT=test mocha --timeout=20000 build/system-test",
"presystem-test": "npm run compile",
"test:all": "cross-env ENVIRONMENT=test c8 --reporter=html --reporter=text mocha --recursive --timeout=20000 build/system-test build/test",
"test:all": "cross-env ENVIRONMENT=test c8 mocha --recursive --timeout=20000 build/system-test build/test",
"test:snap": "SNAPSHOT_UPDATE=1 npm test",
"clean": "gts clean",
"prepare": "npm run compile",
Expand Down

0 comments on commit b8b71ad

Please sign in to comment.