carto/Makefile

17 lines
175 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
doc:
docco lib/mess/*.js
.PHONY: test