Remove Makefile in favour of NPM test scripts

This commit is contained in:
Simon Ho 2016-09-20 16:18:09 -07:00
parent 955f5dc084
commit c01cd26417
1 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
## TESTS
TESTER = ./node_modules/.bin/mocha
OPTS = --growl --globals getSchema --timeout 15000
TESTS = test/*.test.js
test:
$(TESTER) $(OPTS) $(TESTS)
test-verbose:
$(TESTER) $(OPTS) --reporter spec $(TESTS)
testing:
$(TESTER) $(OPTS) --watch $(TESTS)
.PHONY: test docs coverage