blob: 10e47df0a5bf6edb03610fa11e6573a9af5ca98e (
plain) (
tree)
|
|
REPORTER := spec
.PHONY: test
test:
./node_modules/mocha/bin/mocha \
--ui tdd \
--reporter $(REPORTER) \
--growl test/helper.js \
test/webcals/sax/*_test.js \
test/webcals/*_test.js
.PHONY: watch
FILES=
watch:
./node_modules/mocha/bin/mocha \
--ui tdd \
--reporter $(REPORTER) \
--watch \
--growl \
test/helper.js $(FILES)
|