Skip to content

Commit

Permalink
Adds --all to coverage script
Browse files Browse the repository at this point in the history
  • Loading branch information
godu committed Apr 5, 2016
1 parent 1cb26a4 commit 38e4cd7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"test": "npm run lint && npm run nyc",
"lint": "eslint .",
"ava": "RUNNING_UNIT_TESTS=true ava",
"nyc": "RUNNING_UNIT_TESTS=true nyc ava",
"nyc": "RUNNING_UNIT_TESTS=true nyc ava --all",
"nyc:lcov": "npm run nyc -- --reporter=lcov",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
Expand Down Expand Up @@ -52,7 +52,8 @@
},
"nyc": {
"exclude": [
"src/**/test/**/*.js"
"src/**/test/**/*.js",
"coverage"
]
}
}

0 comments on commit 38e4cd7

Please sign in to comment.