42 lines
714 B
Makefile
42 lines
714 B
Makefile
SRC = lib/*.js
|
|
|
|
include node_modules/make-lint/index.mk
|
|
|
|
REQUIRED = --require should --require should-http
|
|
|
|
TESTS = test/application \
|
|
test/context/* \
|
|
test/request/* \
|
|
test/response/* \
|
|
test/experimental/index.js
|
|
|
|
test:
|
|
@NODE_ENV=test node \
|
|
./node_modules/.bin/_mocha \
|
|
$(REQUIRED) \
|
|
$(TESTS) \
|
|
--bail
|
|
|
|
test-cov:
|
|
@NODE_ENV=test node \
|
|
./node_modules/.bin/istanbul cover \
|
|
./node_modules/.bin/_mocha \
|
|
-- -u exports \
|
|
$(REQUIRED) \
|
|
$(TESTS) \
|
|
--bail
|
|
|
|
test-travis:
|
|
@NODE_ENV=test node \
|
|
./node_modules/.bin/istanbul cover \
|
|
./node_modules/.bin/_mocha \
|
|
--report lcovonly \
|
|
-- -u exports \
|
|
$(REQUIRED) \
|
|
$(TESTS) \
|
|
--bail
|
|
|
|
bench:
|
|
@$(MAKE) -C benchmarks
|
|
|
|
.PHONY: test bench
|