mirror of
https://github.com/socketio/socket.io.git
synced 2026-04-30 03:00:39 -04:00
17 lines
317 B
Makefile
17 lines
317 B
Makefile
|
|
BENCHMARKS = $(shell find bench -type f ! -name 'runner.js')
|
|
|
|
test:
|
|
@./node_modules/.bin/gulp test
|
|
|
|
test-cov: lib-cov
|
|
EIO_COV=1 $(MAKE) test REPORTER=html-cov > coverage.html
|
|
|
|
lib-cov:
|
|
jscoverage --no-highlight lib lib-cov
|
|
|
|
bench:
|
|
@node $(PROFILEFLAGS) bench/runner.js $(BENCHMARKS)
|
|
|
|
.PHONY: test test-cov bench
|