Skip to content
This repository has been archived by the owner on Jul 14, 2019. It is now read-only.

Commit

Permalink
fix(coverage): Enable 100% test coverage threshold.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeal committed Jul 23, 2017
1 parent b062f2e commit 71b12c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
package-lock.json
package-lock.json
.nyc_output
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"test": "tests"
},
"scripts": {
"test": "tap tests/*.js && standard",
"cover": "tap tests/*.js --cov --coverage-report=lcov",
"test": "tap tests/*.js --100 && standard",
"cover": "tap tests/*.js --coverage-report=lcov && codecov",
"precommit": "npm test",
"prepush": "npm test",
"commitmsg": "validate-commit-msg",
Expand All @@ -26,6 +26,7 @@
"through2": "^2.0.3"
},
"devDependencies": {
"codecov": "^2.2.0",
"commitizen": "^2.9.6",
"coveralls": "^2.13.1",
"cracks": "^3.1.2",
Expand All @@ -34,7 +35,7 @@
"rimraf": "^2.6.1",
"semantic-release": "^6.3.6",
"standard": "^10.0.2",
"validate-commit-msg": "^2.12.2"
"validate-commit-msg": "^2.13.1"
},
"config": {
"commitizen": {
Expand Down

0 comments on commit 71b12c6

Please sign in to comment.