2013-03-27 00:37:13 +00:00
|
|
|
## TESTS
|
|
|
|
|
|
|
|
TESTER = ./node_modules/.bin/mocha
|
2013-04-18 15:35:56 +00:00
|
|
|
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)
|
|
|
|
|
|
|
|
.PHONY: test docs
|