Makefile 154 B

123456789
  1. TESTS = test/*.js
  2. REPORTER = spec
  3. TIMEOUT = 5000
  4. test:
  5. @./node_modules/.bin/mocha \
  6. --reporter $(REPORTER) --timeout $(TIMEOUT) $(TESTS)
  7. .PHONY: test