mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-04-05 07:31:01 +00:00
8 lines
171 B
Bash
8 lines
171 B
Bash
|
|
#!/bin/bash
|
||
|
|
tests=$1
|
||
|
|
if [[ $tests = "" ]]; then
|
||
|
|
tests="all"
|
||
|
|
fi
|
||
|
|
|
||
|
|
java -jar lib/jstestdriver/JsTestDriver.jar --tests "$tests" --config jsTestDriver-scenario.conf --reset
|