Makefile 162 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 TESTS = test/*.js REPORTER = spec TIMEOUT = 5000 test: @./node_modules/.bin/mocha \ --reporter $(REPORTER) --timeout $(TIMEOUT) $(TESTS) .PHONY: test