Files
socket.io/Makefile
Guillermo Rauch 2e596e7876 Fixed Makefile
2012-02-15 14:07:49 -03:00

19 lines
317 B
Makefile

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