CartoDB-SQL-API/Makefile
2011-06-13 12:29:57 +02:00

18 lines
306 B
Makefile

test-tmp:
@rm -rf test/tmp
@mkdir -p test/tmp
test:
expresso -I lib test/unit/*.js test/acceptance/*.js
test-acceptance:
expresso -I lib test/acceptance/*.js
test-unit:
expresso -I lib test/unit/*.js
test-cov:
expresso -I lib --cov test/unit/*.js test/acceptance/*.js
.PHONY: test test-cov