Files
vscode/scripts/test.bat
T
Dmitriy VasyuraandCopilot 002b200b89 Reuse cached Electron for unit tests (#333137)
Route the unit-test launchers through the version-aware Electron preparation path so repeated runs avoid re-downloading and re-extracting the same runtime.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-08-28 12:20:16 -07:00

35 lines
882 B
Batchfile

@echo off
setlocal
set ELECTRON_RUN_AS_NODE=
pushd %~dp0\..
:: Get Code.exe location
set "NAMESHORT="
for /f "tokens=2 delims=:," %%a in ('findstr /R /C:"\"nameShort\":.*" product.json') do if not defined NAMESHORT set "NAMESHORT=%%~a"
set NAMESHORT=%NAMESHORT: "=%
set NAMESHORT=%NAMESHORT:"=%.exe
set CODE=".build\electron\%NAMESHORT%"
:: Download Electron if needed
if "%VSCODE_SKIP_PRELAUNCH%"=="" (
call node build\lib\preLaunch.ts --only-electron
if errorlevel 1 node .\node_modules\gulp\bin\gulp.js electron
)
:: Run tests
set ELECTRON_ENABLE_LOGGING=1
%CODE% .\test\unit\electron\index.js --crash-reporter-directory=%~dp0\..\.build\crashes %*
popd
endlocal
:: app.exit(0) is exiting with code 255 in Electron 1.7.4.
:: See https://github.com/microsoft/vscode/issues/28582
echo errorlevel: %errorlevel%
if %errorlevel% == 255 set errorlevel=0
exit /b %errorlevel%