Dashboard sipadu mbip
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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