mirror of
https://github.com/socketio/socket.io.git
synced 2026-04-30 03:00:39 -04:00
20 lines
298 B
Makefile
20 lines
298 B
Makefile
|
|
ALL_TESTS = $(shell find test/ -name '*.test.js')
|
|
|
|
run-tests:
|
|
@npm link > /dev/null --local
|
|
@./node_modules/.bin/expresso \
|
|
-I support \
|
|
-I lib \
|
|
--serial \
|
|
$(TESTFLAGS) \
|
|
$(TESTS)
|
|
|
|
test:
|
|
@$(MAKE) TESTS="$(ALL_TESTS)" run-tests
|
|
|
|
test-cov:
|
|
@TESTFLAGS=--cov $(MAKE) test
|
|
|
|
.PHONY: test
|