| 1234567891011121314151617181920212223 |
- TESTS = test/*.js
- BENCHMARKS = $(shell find bench -type f ! -name 'runner.js')
- REPORTER = dot
- test:
- @./node_modules/.bin/mocha \
- --reporter $(REPORTER) \
- --slow 500ms \
- --bail \
- --globals ___eio,document \
- $(TESTS)
- 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
|