blob: 918763102fdc2138175fd50cbf6b68acb34d919c (
plain)
| 1
2
3
4
5
6
7
8
 | #!/bin/sh
tests=$1
if [[ $tests = "" ]]; then
  tests="all"
fi
java -jar lib/jstestdriver/JsTestDriver.jar --tests "$tests"
#java -jar lib/jstestdriver/JsTestDriver.jar --tests "$tests" --config jsTestDriver-jquery.conf
 |