express-di
Version:
Bring the dependency injection pattern to the Express
23 lines (15 loc) • 327 B
Plain Text
REPORTER = dot
check: test
test:
@NODE_ENV=test ./node_modules/.bin/mocha \
--reporter $(REPORTER)
test-cov: lib-cov
@EXPRESS_DI_COV=1 $(MAKE) test REPORTER=html-cov > coverage.html
lib-cov:
@jscoverage lib lib-cov
bench:
@$(MAKE) -C benchmarks
clean:
rm -f coverage.html
rm -fr lib-cov