Commit 7e210540 by Konstantin Käfer

allow executing only particular tests with make

parent 933bee90
......@@ -5,7 +5,12 @@ build:
clean:
node-waf clean
ifndef only
test: build
expresso -I lib test/*.test.js
else
test: build
expresso -I lib test/${only}.test.js
endif
.PHONY: build clean test
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment