Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Commit

Permalink
📦 Upgrade mocha to ^4.0.0
Browse files Browse the repository at this point in the history
Includes use of new --exit flag to support old functionality.
  • Loading branch information
jpwilliams committed Oct 4, 2017
1 parent 30ab7d2 commit 67e8d94
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
"node": ">=6"
},
"scripts": {
"coverage": "./node_modules/.bin/nyc ./node_modules/.bin/mocha --require test/bootstrap test/*.test.js test/**/*.test.js && ./node_modules/.bin/nyc report --reporter=lcov",
"test": "./node_modules/.bin/mocha --require test/bootstrap test/*.test.js test/**/*.test.js",
"travis": "./node_modules/.bin/nyc ./node_modules/.bin/mocha --require test/bootstrap test/*.test.js test/**/*.test.js && ./node_modules/.bin/nyc report --reporter=lcovonly && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf ./coverage"
"coverage": "./node_modules/.bin/nyc ./node_modules/.bin/mocha --require test/bootstrap test/*.test.js test/**/*.test.js --exit && ./node_modules/.bin/nyc report --reporter=lcov",
"test": "./node_modules/.bin/mocha --require test/bootstrap test/*.test.js test/**/*.test.js --exit",
"travis": "./node_modules/.bin/nyc ./node_modules/.bin/mocha --require test/bootstrap test/*.test.js test/**/*.test.js --exit && ./node_modules/.bin/nyc report --reporter=lcovonly && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf ./coverage"
},
"author": "Jack Williams <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -54,8 +54,8 @@
],
"devDependencies": {
"chai": "^4.1.1",
"mocha": "^3.5.0",
"coveralls": "^3.0.0",
"mocha": "^4.0.0",
"nyc": "^11.1.0"
}
}

0 comments on commit 67e8d94

Please sign in to comment.