Makefile 108 B

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