Makefile 343 B

123456789101112
  1. test:
  2. @echo TRAVIS_JOB_ID $(TRAVIS_JOB_ID)
  3. @./node_modules/.bin/mocha -t 200000 -R spec
  4. coverage:
  5. ./node_modules/.bin/mocha -t 200000 -R html-cov --require blanket > coverage.html
  6. @open coverage.html
  7. coveralls:
  8. ./node_modules/.bin/mocha -t 200000 -R mocha-lcov-reporter --require blanket | ./node_modules/.bin/coveralls
  9. .PHONY: test