Skip to content

Commit

Permalink
🐛 Fix code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
screendriver committed Nov 2, 2018
1 parent f8900bf commit 5f16ad9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .nycrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
],
"reporter": [
"lcov",
"json",
"text-summary"
"json"
]
}
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@
"prepublishOnly": "yarn clean && yarn build && yarn test",
"clean": "rm -rf dist",
"lint": "tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'",
"test:unit": "tape -r source-map-support/register 'dist/test/unit/**/*.js' | tap-spec",
"test:unit": "nyc tape -r source-map-support/register 'dist/test/unit/**/*.js' | tap-spec",
"test:integration": "tape -r source-map-support/register 'dist/test/integration/**/*.js' | tap-spec",
"test": "yarn lint && nyc yarn test:unit && yarn test:integration",
"test": "yarn lint && yarn test:unit && yarn test:integration && yarn coverage",
"coverage": "nyc report --reporter=text-summary",
"build": "tsc"
},
"dependencies": {
Expand Down

0 comments on commit 5f16ad9

Please sign in to comment.