Makefile 167 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 TESTS = test/run.js REPORTER = spec TIMEOUT = 10000 test: @NODE_ENV=test ./node_modules/mocha/bin/mocha -R $(REPORTER) -t $(TIMEOUT) $(TESTS) .PHONY: test