koa-lite/Makefile

16 lines
237 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 \
2013-11-14 02:41:24 +00:00
test/application \
test/context/* \
test/request/* \
test/response/* \
2013-08-17 07:15:57 +00:00
--bail
bench:
@$(MAKE) -C benchmarks
.PHONY: test bench