blob: f857b0df1b092e042dc3c1cd51ce636264e85879 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
@echo off
REM Windows script for starting JSTD server
REM
REM Requirements:
REM - Java (http://www.java.com)
set BASE_DIR=%~dp0
set PORT=9877
echo "Starting JsTestDriver Server (http://code.google.com/p/js-test-driver/)"
echo "Please open the following url and capture one or more browsers:"
echo "http://localhost:%PORT%"
java -jar "%BASE_DIR%\..\test\lib\jstestdriver\JsTestDriver.jar" ^
--port %PORT% ^
--browserTimeout 20000 ^
--config "%BASE_DIR%\..\config\jsTestDriver-scenario.conf" ^
--basePath "%BASE_DIR%\.."
|