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