Files
socket.io/Makefile
Guillermo Rauch 1514af064f Socket.IO 0.7-pre
2011-05-05 08:49:40 -07:00

16 lines
240 B
Makefile

ALL_TESTS = $(shell find test/ -name '*.test.js')
run-tests:
@./support/expresso/bin/expresso \
-I support/should.js/lib \
-I support \
-I lib \
--serial \
$(TESTS)
test:
@$(MAKE) TESTS="$(ALL_TESTS)" run-tests
.PHONY: test