blob: df678fafea718fc8ef57716d3c70945c618d6614 (
plain)
| 1
2
3
4
5
6
7
8
9
 | #!/bin/sh
tests=$1
if [[ $tests = "" ]]; then
  tests="all"
fi
java -Xmx1g -jar lib/jstestdriver/JsTestDriver.jar --config jsTestDriver-coverage.conf --testOutput=tmp/lcov --tests "$tests"
genhtml -o tmp/coverage-html/ tmp/lcov/jsTestDriver.conf-coverage.dat
echo "done! check out tmp/coverage-html/index.html"
 |