2025-05-13 04:14:01 +00:00

9 lines
154 B
Makefile

TESTS = test/*.js
REPORTER = spec
TIMEOUT = 5000
test:
@./node_modules/.bin/mocha \
--reporter $(REPORTER) --timeout $(TIMEOUT) $(TESTS)
.PHONY: test