UNPKG

258 BPlain TextView Raw
1MOCHA_OPTS=
2REPORTER = dot
3
4test:
5 @NODE_ENV=test ./node_modules/.bin/mocha \
6 --reporter $(REPORTER) \
7 $(MOCHA_OPTS)
8
9test-watch:
10 @NODE_ENV=test ./node_modules/.bin/mocha \
11 --reporter $(REPORTER) \
12 --growl \
13 --watch
14
15.PHONY: test test-watch