mirror of
https://github.com/socketio/socket.io.git
synced 2026-04-30 03:00:39 -04:00
18 lines
296 B
Makefile
18 lines
296 B
Makefile
|
|
REPORTER = dot
|
|
|
|
build:
|
|
@./node_modules/.bin/browserify --standalone io -o socket.io.js .
|
|
|
|
test:
|
|
@./node_modules/.bin/mocha \
|
|
--reporter $(REPORTER) \
|
|
--bail
|
|
|
|
test-cov:
|
|
@./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- \
|
|
--reporter $(REPORTER) \
|
|
$(TESTS)
|
|
|
|
.PHONY: test
|