Files
JiboSDK/node_modules/node-pid-controller/Makefile

16 lines
285 B
Makefile
Raw Normal View History

2026-03-22 03:21:45 +02:00
MOCHA_OPTS=
REPORTER = dot
test:
@NODE_ENV=test ./node_modules/.bin/mocha \
--reporter $(REPORTER) \
$(MOCHA_OPTS)
test-w:
@NODE_ENV=test ./node_modules/.bin/mocha \
--reporter $(REPORTER) \
--growl \
--watch \
$(MOCHA_OPTS)
.PHONY: test test-w