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 8e36342 commit c4083a9Copy full SHA for c4083a9
coveralls.yml renamed to .coveralls.yml
.travis.yml
@@ -7,4 +7,6 @@ cache:
7
install:
8
- npm install
9
script:
10
- - npm run test-coverage
+ - npm run test-coverage
11
+after_success:
12
+ - npm run coverage
package.json
@@ -29,7 +29,8 @@
29
},
30
"scripts": {
31
"test": "jest",
32
- "test-coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls",
+ "test-coverage": "jest --coverage",
33
+ "coverage": "coveralls < coverage/lcov.info",
34
"dev": "webpack --mode development --watch",
35
"prod": "webpack -p --mode production"
36
0 commit comments