UNPKG

226 BPlain TextView Raw
1MOCHA_OPTS = --require should
2REPORTER = spec
3
4test:
5 @./node_modules/.bin/mocha \
6 --reporter $(REPORTER) \
7 $(MOCHA_OPTS)
8
9test.ci:
10 @npm install
11 @./node_modules/.bin/mocha --reporter $(REPORTER) $(MOCHA_OPTS)
12
13.PHONY: test
\No newline at end of file