We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b139bf commit b6ac613Copy full SHA for b6ac613
.travis.yml
@@ -4,10 +4,9 @@ language:
4
node_js:
5
- "6"
6
env:
7
-- ACTION=test
8
- ACTION="run lint"
9
- ACTION="run cs-check"
10
- ACTION="run dist"
+- ACTION="test && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
11
script:
12
-- npm $ACTION
13
-- node --harmony_proxies node_modules/.bin/jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
+- npm $ACTION
package.json
@@ -14,7 +14,7 @@
14
"precommit": "lint-staged",
15
"publish-to-npm": "npm run dist && npm version patch && npm publish",
16
"tdd": "jest --watchAll",
17
- "test": "jest"
+ "test": "jest --coverage"
18
},
19
"jest": {
20
"verbose": true,
0 commit comments