Makefile 229 B

12345678
  1. test:
  2. @node node_modules/lab/bin/lab -a code -L
  3. test-cov:
  4. @node node_modules/lab/bin/lab -a code -t 100 -L
  5. test-cov-html:
  6. @node node_modules/lab/bin/lab -a code -L -r html -o coverage.html
  7. .PHONY: test test-cov test-cov-html