Makefile 92 B

123456789
  1. REPORTER = dot
  2. test:
  3. @./node_modules/.bin/mocha \
  4. --reporter $(REPORTER)
  5. .PHONY: test