blob: d339897fd98f0f89563e141c3e1bcd1f8b4535a3 (
plain)
| 1
2
3
4
5
6
7
8
 | #!/bin/bash
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
 |