vscode/scripts/test-documentation.bat
Benjamin Pasero c5b6ef14e6
Some checks are pending
Monaco Editor checks / Monaco Editor checks (push) Waiting to run
esm - more cleanup (#230285)
2024-10-02 11:55:17 +02: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