Makefile 221 B

12345678910
  1. SRC = $(shell find lib -type f -name "*.js")
  2. TESTS = test/*.js
  3. TESTTIMEOUT = 5000
  4. REPORTER = spec
  5. test:
  6. @NODE_ENV=test ./node_modules/.bin/mocha \
  7. --reporter $(REPORTER) --timeout $(TESTTIMEOUT) $(TESTS)
  8. .PHONY: test