mirror of
https://github.com/socketio/socket.io.git
synced 2026-04-30 03:00:39 -04:00
16 lines
240 B
Makefile
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
|