This commit is contained in:
2015-11-02 11:36:10 +01:00
commit 08cd6febee
1419 changed files with 221401 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
MOCHA?=node_modules/.bin/mocha
CONFIG?=test/config.json
REPORTER?=tap
FLAGS=--config $(CONFIG) --reporter $(REPORTER)
test:
$(MOCHA) $(shell find test/* -prune -name "*test.js") $(FLAGS)
.PHONY: test