Skip to content

Commit

Permalink
Fix test coverage script
Browse files Browse the repository at this point in the history
  • Loading branch information
niekcandaele committed Mar 22, 2019
1 parent f22b7c3 commit 25d0ac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"test": "./node_modules/.bin/mocha test/**/*.test.js --exit",
"test:cover": "nyc --report-dir ./coverage --reporter=html --reporter=text-summary node_modules/mocha/bin/_mocha --exit",
"test:cover": "nyc --report-dir ./coverage --reporter=html --reporter=text-summary node_modules/mocha/bin/_mocha test/**/*.test.js --exit",
"test:coveralls": "nyc npm run test:cover && nyc report --reporter=text-lcov | coveralls",
"lint": "./node_modules/.bin/eslint routes/ models/ helpers/ lib/ app.js public/js",
"lint:fix": "npm run lint -- --fix",
Expand Down

0 comments on commit 25d0ac4

Please sign in to comment.