Files
socket.io/Makefile
2011-06-19 14:53:32 -03:00

23 lines
351 B
Makefile

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