view node_modules/socket.io/Makefile @ 91:1a706a2880ee

reset bug fixed but still todo unit transect to 0 reset
author Rob Canning <rob@foo.net>
date Thu, 31 Jul 2014 00:16:27 +0100
parents 0ae87af84e2f
children
line wrap: on
line source

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