Files
socket.io/Makefile
2016-12-21 08:59:06 +01:00

17 lines
259 B
Makefile

REPORTER = dot
test:
@if [ "x$(BROWSERS)" = "x" ]; then make test-node; else make test-zuul; fi
test-node:
@./node_modules/.bin/mocha \
--reporter $(REPORTER) \
test/index.js
test-zuul:
@./node_modules/zuul/bin/zuul \
test/index.js
.PHONY: test