15 lines
257 B
Makefile
15 lines
257 B
Makefile
|
## TESTS
|
||
|
|
||
|
TESTER = ./node_modules/.bin/mocha
|
||
|
OPTS = --require ./test/init.js
|
||
|
TESTS = test/*.test.js
|
||
|
|
||
|
test:
|
||
|
$(TESTER) $(OPTS) $(TESTS)
|
||
|
test-verbose:
|
||
|
$(TESTER) $(OPTS) --reporter spec $(TESTS)
|
||
|
testing:
|
||
|
$(TESTER) $(OPTS) --watch $(TESTS)
|
||
|
|
||
|
.PHONY: test docs
|