loopback-connector-mysql/Makefile

17 lines
388 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
coverage:
$(TESTER) $(OPTS) -r blanket -R html-cov $(TESTS) > coverage_loopback-connector-mysql.html
2013-03-27 00:37:13 +00:00
2013-08-15 14:10:45 +00:00
.PHONY: test docs coverage