blob: e7f43d84f50216b8d8e4a35307a1eb60d63276a5 (
plain)
| 1
2
3
4
5
6
7
 | #!/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"
 |