void/scripts/test-documentation.bat

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
309 B
Batchfile
Raw Permalink Normal View History

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