Files
socket.io/Makefile
2011-12-21 14:48:36 -08:00

19 lines
364 B
Makefile

TESTS = $(shell find test/*.js -depth 1 -type f ! -name 'common.js')
REPORTER = dot
build:
@./node_modules/.bin/browserbuild -g eio -f engine.io.js -m engine.io-client lib/
test:
@./node_modules/.bin/mocha \
--require $(shell pwd)/test/common \
--reporter $(REPORTER) \
--growl \
$(TESTS)
test-browser:
./node_modules/.bin/serve test/
.PHONY: test