loopback-connector-mysql/Makefile

15 lines
260 B
Makefile
Raw Normal View History

2013-03-27 00:37:13 +00:00
## TESTS
TESTER = ./node_modules/.bin/mocha
2013-04-07 22:06:28 +00:00
OPTS = --growl --globals getSchema
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)
.PHONY: test docs