You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
carto/Makefile

17 lines
196 B

#
# 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/carto/*.js lib/carto/tree/*.js
.PHONY: test