mirror of
https://github.com/socketio/socket.io.git
synced 2026-04-30 03:00:39 -04:00
16 lines
299 B
Makefile
16 lines
299 B
Makefile
|
|
TESTS = $(shell find test -type f ! -name 'common.js')
|
|
REPORTER = dot
|
|
|
|
test:
|
|
@./node_modules/.bin/mocha \
|
|
--require $(shell pwd)/test/common \
|
|
--reporter $(REPORTER) \
|
|
--growl \
|
|
$(TESTS)
|
|
|
|
build:
|
|
@./node_modules/.bin/browserbuild -g eio -f engine.js -m engine.io-client lib/
|
|
|
|
.PHONY: test
|