mirror of
https://github.com/socketio/socket.io.git
synced 2026-04-30 03:00:39 -04:00
17 lines
259 B
Makefile
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
|