aboutsummaryrefslogtreecommitdiff
path: root/node_modules/seq-queue/Makefile
blob: 76354eab1e4bcf289dcab8052c7e32aa19da9d8b (plain)
1
2
3
4
5
6
7
8
9
TESTS = test/*.js
REPORTER = spec
TIMEOUT = 5000

test:
	@./node_modules/.bin/mocha \
		--reporter $(REPORTER) --timeout $(TIMEOUT) $(TESTS)

.PHONY: test