Created
October 21, 2013 17:37
-
-
Save rafaellucio/d873939e04af3b71797c to your computer and use it in GitHub Desktop.
Developer Config Files Nodejs Test with Mocha
This file contains hidden or 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) \ | |
| --ui tdd \ | |
| --check-leaks | |
| test-w: | |
| @NODE_ENV=test ./node_modules/.bin/mocha \ | |
| --reporter $(REPORTER) \ | |
| --growl \ | |
| --ui tdd \ | |
| --watch | |
| .PHONY: test test-w |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment