Files
wehub-resource-sync fdedcf53bb
Basic checks / Compilation, Unit and Integration Tests (push) Waiting to run
Basic checks / Hygiene and Layering (push) Waiting to run
Basic checks / Warm up node modules cache (push) Waiting to run
Check Format and Lint / lint-and-format (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 12:36:35 +08:00

18 lines
309 B
Batchfile

@echo off
setlocal
echo Runs tests against the current documentation in https://github.com/microsoft/vscode-docs/tree/vnext
pushd %~dp0\..
:: Endgame tests
call .\scripts\test.bat --runGlob **\*.releaseTest.js %*
if %errorlevel% neq 0 exit /b %errorlevel%
rmdir /s /q %VSCODEUSERDATADIR%
popd
endlocal