Create the node_modules directory if needed when you run the tests

This commit is contained in:
richo
2013-03-16 02:26:31 +11:00
parent 9a75bff2c1
commit d3b806c68d

View File

@@ -1,4 +1,7 @@
test:
test: node_modules
./node_modules/.bin/mocha -R spec -t 10000
.PHONY: test
node_modules: package.json
npm install
.PHONY: test