You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 229B

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