15 lines
237 B
Makefile
15 lines
237 B
Makefile
|
|
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
|