Created
May 6, 2013 16:35
-
-
Save timReynolds/5526268 to your computer and use it in GitHub Desktop.
Mocha Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REPORTER = dot | |
test: | |
@NODE_ENV=test ./node_modules/.bin/mocha \ | |
--reporter $(REPORTER) \ | |
test-w: | |
@NODE_ENV=test ./node_modules/.bin/mocha \ | |
--reporter $(REPORTER) \ | |
--growl \ | |
--watch | |
.PHONY: test test-w |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment