Files
how2ice 44cca8f122 init
2025-08-14 23:34:11 +09:00

9 lines
154 B
Makefile
Executable File

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