Introduce test.bat orchestrating Go/Vitest/Playwright phases, expand coverage across server, agent, and dashboard, and document in tests/README.md.
8 lines
194 B
Batchfile
8 lines
194 B
Batchfile
@echo off
|
|
setlocal EnableExtensions
|
|
cd /d "%~dp0"
|
|
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0scripts\test-suite.ps1" %*
|
|
set "EC=%ERRORLEVEL%"
|
|
if %EC% neq 0 exit /b %EC%
|
|
exit /b 0
|