8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d84bdd commit 20b416dCopy full SHA for 20b416d
.travis.yml
@@ -6,4 +6,4 @@ node_js:
6
- "5"
7
- "4"
8
after_success:
9
- - npm run cover
+ - npm run codecov
package.json
@@ -28,8 +28,9 @@
28
"commitmsg": "validate-commit-msg",
29
"posttest": "npm run clean",
30
"pretest": "eslint lib/**/*",
31
- "test": "tap 'test/tap/**/*.js' --cov && vows test/vows/*.js",
32
- "cover": "tap 'test/tap/**/*.js' --cov --coverage-report=lcov && codecov"
+ "test": "tap 'test/tap/**/*.js' && vows test/vows/*.js",
+ "coverage": "tap 'test/tap/**/*.js' --cov",
33
+ "codecov": "tap 'test/tap/**/*.js' --cov --coverage-report=lcov && codecov"
34
},
35
"directories": {
36
"test": "test",
0 commit comments