Makefile 137 B

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