Makefile 315 B

1234567891011
  1. test:
  2. @node node_modules/lab/bin/lab
  3. test-cov:
  4. @node node_modules/lab/bin/lab -r threshold -t 100
  5. test-cov-html:
  6. @node node_modules/lab/bin/lab -r html -o coverage.html
  7. complexity:
  8. @node node_modules/complexity-report/src/cli.js -o complexity.md -f markdown lib
  9. .PHONY: test test-cov test-cov-html complexity