mirror of
https://github.com/socketio/socket.io.git
synced 2026-04-30 03:00:39 -04:00
9 lines
124 B
Makefile
9 lines
124 B
Makefile
# This makefile exists to help run tests.
|
|
|
|
.PHONY: test
|
|
|
|
test:
|
|
for f in `ls -1 test/test-*.js` ; do \
|
|
node $$f ; \
|
|
done
|