29687cb253
left out of test for now since it seems to barf on *
19 lines
294 B
Makefile
19 lines
294 B
Makefile
|
|
SRC = lib/*.js
|
|
|
|
include node_modules/make-lint/index.mk
|
|
|
|
test:
|
|
@NODE_ENV=test ./node_modules/.bin/mocha \
|
|
--require should \
|
|
--harmony-generators \
|
|
test/application \
|
|
test/context/* \
|
|
test/request/* \
|
|
test/response/* \
|
|
--bail
|
|
|
|
bench:
|
|
@$(MAKE) -C benchmarks
|
|
|
|
.PHONY: test bench
|