1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2025-03-13 03:00:50 +00:00
Arsse/tests/test.bat

10 lines
314 B
Batchfile
Raw Normal View History

@echo off
setlocal
set base=%~dp0
start php -S localhost:8000 "%base%\server.php"
php "%base%\..\vendor\phpunit\phpunit\phpunit" -c "%base%\phpunit.xml"
timeout /nobreak /t 1 >nul
for /f "usebackq tokens=5" %%a in (`netstat -aon ^| find "LISTENING" ^| find ":8000"`) do (
taskkill /pid %%a >nul
goto :eof
)