11 lines
158 B
Makefile
11 lines
158 B
Makefile
|
|
test:
|
|
@NODE_ENV=test ./node_modules/.bin/mocha \
|
|
--require should \
|
|
--harmony-generators \
|
|
--bail
|
|
|
|
bench:
|
|
@$(MAKE) -C benchmarks
|
|
|
|
.PHONY: test bench
|