mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
20 lines
548 B
Batchfile
20 lines
548 B
Batchfile
@echo off
|
|
|
|
REM Windows script for starting JSTD server
|
|
REM
|
|
REM Requirements:
|
|
REM - Java (http://www.java.com)
|
|
|
|
set BASE_DIR=%~dp0
|
|
set PORT=9876
|
|
|
|
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.conf" ^
|
|
--basePath "%BASE_DIR%\.."
|