weblogin/node_modules/seq-queue/Makefile

9 lines
154 B
Makefile
Raw Normal View History

2023-01-27 10:58:43 +00:00
TESTS = test/*.js
REPORTER = spec
TIMEOUT = 5000
test:
@./node_modules/.bin/mocha \
--reporter $(REPORTER) --timeout $(TIMEOUT) $(TESTS)
.PHONY: test