aboutsummaryrefslogtreecommitdiff
path: root/node_modules/socket.io/Makefile
blob: 4acf1e524b8ea1533bb0af28df27d87a7854dc5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
REPORTER = dot

test:
	@./node_modules/.bin/mocha \
		--reporter $(REPORTER) \
		--slow 200ms \
		--bail

test-cov:
	@./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- \
		--reporter $(REPORTER) \
		test/

.PHONY: test