koa-lite/Makefile

15 lines
216 B
Makefile
Raw Normal View History

2013-08-17 07:15:57 +00:00
test:
@NODE_ENV=test ./node_modules/.bin/mocha \
--require should \
--harmony-generators \
test/context/* \
test/request/* \
test/response/* \
2013-08-17 07:15:57 +00:00
--bail
bench:
@$(MAKE) -C benchmarks
.PHONY: test bench