Files
socket.io/Makefile
2011-12-23 13:28:05 -08:00

17 lines
302 B
Makefile

TESTS = test/*.js
BENCHMARKS = $(shell find bench -type f ! -name 'runner.js')
REPORTER = dot
test:
@./node_modules/.bin/mocha \
--require $(shell pwd)/test/common \
--reporter $(REPORTER) \
--growl \
$(TESTS)
bench:
@node $(PROFILEFLAGS) bench/runner.js $(BENCHMARKS)
.PHONY: test bench