Dashboard sipadu mbip
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Makefile 370B

1234567891011121314151617181920212223
  1. validate: lint test
  2. test:
  3. @./node_modules/.bin/mocha \
  4. --require should \
  5. --reporter spec
  6. test-cov: lib-cov
  7. @CONCAT_COV=1 ./node_modules/.bin/mocha \
  8. --require should \
  9. --reporter html-cov > coverage.html
  10. lint:
  11. @./node_modules/.bin/jshint \
  12. --verbose \
  13. --config .jshintrc \
  14. lib/*.js \
  15. test/*.js
  16. lib-cov:
  17. jscoverage lib lib-cov
  18. .PHONY: test lint