2015-11-02 11:36:10 +01:00

11 lines
204 B
Makefile

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