carto/Makefile
2011-01-26 18:09:27 -05:00

14 lines
148 B
Makefile

#
# Run all tests
#
ifndef only
test:
bin/expresso -I lib test/*.test.js
else
test:
bin/expresso -I lib test/${only}.test.js
endif
.PHONY: test