mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 07:40:22 +00:00
9 lines
312 B
Bash
Executable file
9 lines
312 B
Bash
Executable file
#!/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"
|