From 85ea27d9fe706e8219c3606dee3fa6bcddcf5e57 Mon Sep 17 00:00:00 2001 From: Caitlin Potter Date: Wed, 15 May 2013 23:05:09 -0400 Subject: [PATCH] Fixes #32 - Fix path to local mocha in Makefile --- templates/app/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/app/Makefile b/templates/app/Makefile index 8f4030a..c028d17 100644 --- a/templates/app/Makefile +++ b/templates/app/Makefile @@ -1,10 +1,10 @@ TESTS = test/*.js test: - @NODE_ENV=test ./node_modules/.bin/mocha \ + @NODE_ENV=test ./node_modules/mocha/bin/mocha \ --require should \ --reporter list \ --slow 20 \ --growl \ $(TESTS) -.PHONY: test \ No newline at end of file +.PHONY: test