10 lines
328 B
Makefile
10 lines
328 B
Makefile
|
|
REPORTER = spec
|
||
|
|
|
||
|
|
test:
|
||
|
|
./node_modules/.bin/mocha --recursive --reporter $(REPORTER) --require should
|
||
|
|
test-w:
|
||
|
|
./node_modules/.bin/mocha --recursive --reporter $(REPORTER) --require should --watch
|
||
|
|
test-debug:
|
||
|
|
./node_modules/.bin/mocha --debug-brk --recursive --reporter $(REPORTER) --require should --watch
|
||
|
|
|
||
|
|
.PHONY: test test-w
|