52 lines
884 B
Makefile
52 lines
884 B
Makefile
SRC = lib/*.js
|
|
|
|
include node_modules/make-lint/index.mk
|
|
|
|
BIN = iojs
|
|
|
|
ifeq ($(findstring io.js, $(shell which node)),)
|
|
BIN = node
|
|
endif
|
|
|
|
ifeq (node, $(BIN))
|
|
FLAGS = --harmony-generators
|
|
endif
|
|
|
|
REQUIRED = --require should --require should-http
|
|
|
|
TESTS = test/application \
|
|
test/context/* \
|
|
test/request/* \
|
|
test/response/* \
|
|
test/experimental/index.js
|
|
|
|
test:
|
|
@NODE_ENV=test $(BIN) $(FLAGS) \
|
|
./node_modules/.bin/_mocha \
|
|
$(REQUIRED) \
|
|
$(TESTS) \
|
|
--bail
|
|
|
|
test-cov:
|
|
@NODE_ENV=test $(BIN) $(FLAGS) \
|
|
./node_modules/.bin/istanbul cover \
|
|
./node_modules/.bin/_mocha \
|
|
-- -u exports \
|
|
$(REQUIRED) \
|
|
$(TESTS) \
|
|
--bail
|
|
|
|
test-travis:
|
|
@NODE_ENV=test $(BIN) $(FLAGS) \
|
|
./node_modules/.bin/istanbul cover \
|
|
./node_modules/.bin/_mocha \
|
|
--report lcovonly \
|
|
-- -u exports \
|
|
$(REQUIRED) \
|
|
$(TESTS) \
|
|
--bail
|
|
|
|
bench:
|
|
@$(MAKE) -C benchmarks
|
|
|
|
.PHONY: test bench
|