Merge pull request #194 from strongloop/remove-makefile

Remove Makefile in favour of NPM scripts
This commit is contained in:
Simon Ho 2016-09-20 19:00:59 -07:00 committed by GitHub
commit 15c3307755
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