vscode/scripts/test-documentation.bat
mxwj 018ff30de3
Some checks failed
Monaco Editor checks / Monaco Editor checks (push) Has been cancelled
Initial commit
2024-11-15 14:29:18 +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