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

20 lines
285 B

#
# Run all tests
#
14 years ago
expresso = ./node_modules/expresso/bin/expresso
docco = ./node_modules/docco/bin/docco
ifndef only
test:
14 years ago
$(expresso) -I lib test/*.test.js
else
test:
14 years ago
$(expresso) -I lib test/${only}.test.js
endif
doc:
14 years ago
$(docco) lib/carto/*.js lib/carto/tree/*.js
.PHONY: test