mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 09:35:37 -05:00
* Merge from vscode 64980ea1f3f532c82bb6c28d27bba9ef2c5b4463 * fix config changes * fix strictnull checks
18 lines
316 B
Batchfile
18 lines
316 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 in AMD
|
|
call .\scripts\test.bat --runGlob **\*.releaseTest.js %*
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
|
|
|
|
|
rmdir /s /q %VSCODEUSERDATADIR%
|
|
|
|
popd
|
|
|
|
endlocal
|