TESTS = test/*.js REPORTER = spec test: @NODE_ENV=test NODE_TLS_REJECT_UNAUTHORIZED=0 ./node_modules/.bin/mocha \ --require should \ --reporter $(REPORTER) \ --timeout 10000 \ --growl \ --sort $(TESTS) .PHONY: test