nodulator
Version:
Complete NodeJS Framework for Restfull APIs
24 lines (17 loc) • 444 B
Plain Text
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)