mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-21 00:40:24 +00:00
14 lines
225 B
Bash
14 lines
225 B
Bash
|
|
#!/bin/sh
|
||
|
|
tests=$1
|
||
|
|
norecompile=$2
|
||
|
|
|
||
|
|
if [[ $tests = "" ]]; then
|
||
|
|
tests="all"
|
||
|
|
fi
|
||
|
|
|
||
|
|
if [[ $norecompile = "" ]]; then
|
||
|
|
rake compile
|
||
|
|
fi
|
||
|
|
|
||
|
|
java -jar lib/jstestdriver/JsTestDriver.jar --tests "$tests" --config jsTestDriver-perf.conf
|