Makefile 430 B

1234567891011121314151617181920212223
  1. test:
  2. @NODE_ENV=test ./node_modules/.bin/mocha $(T) $(TESTS)
  3. test-cov:
  4. @NODE_ENV=test node \
  5. node_modules/.bin/istanbul cover \
  6. ./node_modules/.bin/_mocha \
  7. -- -u exports \
  8. open-cov:
  9. open coverage/lcov-report/index.html
  10. test-travis:
  11. @NODE_ENV=test node \
  12. node_modules/.bin/istanbul cover \
  13. ./node_modules/.bin/_mocha \
  14. --report lcovonly \
  15. -- -u exports \
  16. --bail
  17. .PHONY: test test-cov open-cov test-travis