Added windows .bat equivalents to .sh scripts for running tests
[angular-drzb] / scripts / test-server.bat
1 set base_dir=%~p0
2 set port=9876
3
4 echo "Starting JsTestDriver Server (http://code.google.com/p/js-test-driver/)"
5 echo "Please open the following url and capture one or more browsers:"
6 echo "http://localhost:%port%"
7
8 java -jar "%base_dir%/../test/lib/jstestdriver/JsTestDriver.jar" ^
9          --port %port% ^
10          --browserTimeout 20000 ^
11          --config "%base_dir%/../config/jsTestDriver.conf" ^
12          --basePath "%base_dir%/.."
13