Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/test-web-integration.bat')
-rw-r--r--scripts/test-web-integration.bat4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/test-web-integration.bat b/scripts/test-web-integration.bat
index 68c6a84eba2..13570fbc05a 100644
--- a/scripts/test-web-integration.bat
+++ b/scripts/test-web-integration.bat
@@ -33,6 +33,10 @@ if "%VSCODE_REMOTE_SERVER_PATH%"=="" (
compile-extension-media
)
+if not exist ".\test\integration\browser\out\index.js" (
+ call yarn --cwd test/integration/browser compile
+ call yarn playwright-install
+)
call node .\test\integration\browser\out\index.js --workspacePath=.\extensions\vscode-api-tests\testWorkspace --enable-proposed-api=vscode.vscode-api-tests --extensionDevelopmentPath=.\extensions\vscode-api-tests --extensionTestsPath=.\extensions\vscode-api-tests\out\singlefolder-tests %*
if %errorlevel% neq 0 exit /b %errorlevel%