8 lines
193 B
Makefile
8 lines
193 B
Makefile
|
|
REPORTER = spec
|
||
|
|
|
||
|
|
test:
|
||
|
|
./node_modules/.bin/mocha --reporter $(REPORTER) --require should
|
||
|
|
test-w:
|
||
|
|
./node_modules/.bin/mocha --reporter $(REPORTER) --require should --watch
|
||
|
|
|
||
|
|
.PHONY: test test-w
|