mirror of
https://github.com/socketio/socket.io.git
synced 2026-04-30 03:00:39 -04:00
18 lines
323 B
Makefile
18 lines
323 B
Makefile
|
|
TESTS = test/*.js
|
|
BENCHMARKS = $(shell find bench -type f ! -name 'runner.js')
|
|
REPORTER = dot
|
|
|
|
test:
|
|
@./node_modules/.bin/mocha \
|
|
--require should \
|
|
--require $(shell pwd)/test/common \
|
|
--reporter $(REPORTER) \
|
|
--growl \
|
|
$(TESTS)
|
|
|
|
bench:
|
|
@node $(PROFILEFLAGS) bench/runner.js $(BENCHMARKS)
|
|
|
|
.PHONY: test bench
|