Files
xahau.js/Makefile
2013-09-12 16:24:06 -07:00

11 lines
210 B
Makefile

test:
mocha --reporter spec test/*-test.js
coverage:
rm -rf lib-cov
jscoverage src/js/ripple lib-cov
RIPPLE_LIB_COV=1 mocha --reporter html-cov test/*-test.js > coverage.html
rm -rf lib-cov
.PHONY: test