Files
JiboSDK/node_modules/region/Makefile
2026-03-22 03:21:45 +02:00

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