Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/scripts/test-documentation.bat
3520 views
@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