Blame view

wave/node_modules/socket.io/Makefile 235 Bytes
cf76164e6   Ting Chan   20190709
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