Skip to content

Instantly share code, notes, and snippets.

@ericsaboia
Created January 31, 2014 13:31
Show Gist options
  • Save ericsaboia/8732126 to your computer and use it in GitHub Desktop.
Save ericsaboia/8732126 to your computer and use it in GitHub Desktop.
Mocha Makefile
REPORTER = spec
check: test
test: test-unit
test-unit:
@NODE_ENV=test mocha \
--reporter $(REPORTER) \
test/configure.js test/models/*.js
.PHONY: test test-unit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment