vscode/scripts/test-documentation.bat

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

18 lines
316 B
Batchfile
Raw Normal View History

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