metamaps--metamaps/realtime/node_modules/socket.io/node_modules/socket.io-client/Makefile

20 lines
302 B
Makefile

ALL_TESTS = $(shell find test/ -name '*.test.js')
run-tests:
@./node_modules/.bin/expresso \
-I lib \
-I support \
--serial \
$(TESTS)
test:
@$(MAKE) TESTS="$(ALL_TESTS)" run-tests
test-acceptance:
@node support/test-runner/app $(TRANSPORT)
build:
@node ./bin/builder.js
.PHONY: test