loopback-connector-mysql/Makefile

14 lines
285 B
Makefile
Raw Normal View History

2013-03-27 00:37:13 +00:00
## TESTS
TESTER = ./node_modules/.bin/mocha
OPTS = --growl --globals getSchema --timeout 15000
2013-03-27 00:37:13 +00:00
TESTS = test/*.test.js
test:
$(TESTER) $(OPTS) $(TESTS)
test-verbose:
$(TESTER) $(OPTS) --reporter spec $(TESTS)
testing:
$(TESTER) $(OPTS) --watch $(TESTS)
2013-08-15 14:10:45 +00:00
.PHONY: test docs coverage