annotate node_modules/socket.io/Makefile @ 99:9641c2572988

osc modifications for operation integratus performance
author Rob Canning <rob@foo.net>
date Mon, 08 Dec 2014 21:30:23 +0000
parents 0ae87af84e2f
children
rev   line source
rc-web@69 1
rob@76 2 REPORTER = dot
rc-web@69 3
rc-web@69 4 test:
rob@76 5 @./node_modules/.bin/mocha \
rob@76 6 --reporter $(REPORTER) \
rob@76 7 --slow 200ms \
rob@76 8 --bail
rc-web@69 9
rc-web@69 10 test-cov:
rob@76 11 @./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- \
rob@76 12 --reporter $(REPORTER) \
rob@76 13 test/
rc-web@69 14
rob@76 15 .PHONY: test