Skip to content

Instantly share code, notes, and snippets.

@shanestillwell
Created November 12, 2012 04:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shanestillwell/4057439 to your computer and use it in GitHub Desktop.
Save shanestillwell/4057439 to your computer and use it in GitHub Desktop.
Makefile for MochaJS
all: test
test: ;
@export NODE_PATH=/usr/local/lib/node_modules; \
mocha
test-w: ;
@export NODE_PATH=/usr/local/lib/node_modules; \
mocha -w
test-doc: ;
@export NODE_PATH=/usr/local/lib/node_modules; \
mocha -R doc
.PHONY: test test-w test-doc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment