Files
xahau.js/Makefile

11 lines
194 B
Makefile

test:
mocha 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