mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
Reduce duplication in packaga.json and run coverage as part of npm test
This commit is contained in:
parent
863d72d8b5
commit
7d433cd332
@ -1,7 +1,7 @@
|
||||
language: java
|
||||
jdk: oraclejdk8
|
||||
script:
|
||||
- cd unleash-server && npm install && npm run test-travis
|
||||
- cd unleash-server && npm install && npm test && npm run coverage-report
|
||||
- cd .. && cd unleash-client-java && mvn test
|
||||
notifications:
|
||||
hipchat:
|
||||
|
@ -19,11 +19,11 @@
|
||||
"scripts": {
|
||||
"start": "node server.js",
|
||||
"dev": "NODE_ENV=local supervisor --ignore ./node_modules/,./public/js server.js",
|
||||
"test": "jshint server.js lib test && jsxhint public/js/*.jsx && mocha test test/*",
|
||||
"test-travis": "jshint server.js lib test && jsxhint public/js/*.jsx && mocha test test/* && npm run cover",
|
||||
"test": "jshint server.js lib test && jsxhint public/js/*.jsx && mocha test test/* && npm run coverage",
|
||||
"tdd": "mocha --watch test test/*",
|
||||
"test-bamboo-ci": "mocha test test/*",
|
||||
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
|
||||
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
|
||||
"coverage-report": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
|
||||
},
|
||||
"dependencies": {
|
||||
"any-db": "2.1.0",
|
||||
|
Loading…
Reference in New Issue
Block a user