loopback-connector-mysql/Makefile

14 lines
285 B
Makefile

## 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