gimm260-data-visualization/server/node_modules/seq-queue/Makefile

9 lines
154 B
Makefile
Raw Normal View History

2022-12-13 01:08:09 -07:00
TESTS = test/*.js
REPORTER = spec
TIMEOUT = 5000
test:
@./node_modules/.bin/mocha \
--reporter $(REPORTER) --timeout $(TIMEOUT) $(TESTS)
.PHONY: test