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