Skip to content

Instantly share code, notes, and snippets.

@rafaellucio
Created October 21, 2013 17:37
Show Gist options
  • Save rafaellucio/d873939e04af3b71797c to your computer and use it in GitHub Desktop.
Save rafaellucio/d873939e04af3b71797c to your computer and use it in GitHub Desktop.
Developer Config Files Nodejs Test with Mocha
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