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 2c0a32e commit 130d108Copy full SHA for 130d108
.travis.yml
@@ -4,6 +4,8 @@ node_js:
4
before_install:
5
- npm i -g npm@5.6.0
6
script:
7
- - npm run test-coverage
+ - npm run test
8
+ npm run-script test-report
9
+ npm run-script test-coverage
10
after_script:
11
- npm run coverage
package.json
@@ -5,6 +5,7 @@
"main": "src/index.js",
"scripts": {
"test": "nyc --reporter=html mocha",
+ "test-report": "nyc --reporter=text-lcov mocha",
"test-coverage": "nyc report --reporter=text-lcov mocha",
"coverage": "nyc report --reporter=text-lcov mocha | coveralls",
"start": "node src/demo.js",
0 commit comments