e7cc969e80bec600480a35427731b64f42dd3b337299ebd302125c34d2e428d6acd8e0cd10b3037f66df020070cbcb337ba4a723802b7c08b155b1a5ce9263 524 B

123456789101112131415161718192021
  1. test:
  2. @npm run test
  3. lib-cov:
  4. @./node_modules/.bin/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib
  5. coverage: lib-cov
  6. @COVERAGE=1 ISTANBUL_REPORTERS=text-summary ./node_modules/.bin/mocha --reporter mocha-istanbul
  7. @rm -rf lib-cov
  8. coveralls: lib-cov
  9. @COVERAGE=1 ISTANBUL_REPORTERS=lcovonly ./node_modules/.bin/mocha --reporter mocha-istanbul
  10. @cat lcov.info | ./node_modules/.bin/coveralls
  11. @rm -rf lib-cov lcov.info
  12. travis: lint test coveralls
  13. lint:
  14. @npm run lint
  15. .PHONY: test