mirror of
https://github.com/Xahau/xahau.js.git
synced 2026-04-29 15:37:50 +00:00
11 lines
194 B
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
|