OCA_Backend/api/node_modules/seq-queue/Makefile
2022-01-22 19:06:44 +05:30

9 lines
154 B
Makefile

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