From ac0008a25b8f0d2e056c8eb84fcb1497864bbbf3 Mon Sep 17 00:00:00 2001 From: Jackson Kearl Date: Thu, 11 Mar 2021 09:23:34 -0800 Subject: [PATCH] Remove waiting for welcome page while we are experimenting with what the welcome page will be Fixes #118748 --- test/automation/src/application.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/test/automation/src/application.ts b/test/automation/src/application.ts index 35ee19cc0c5..8f573355e44 100644 --- a/test/automation/src/application.ts +++ b/test/automation/src/application.ts @@ -72,9 +72,10 @@ export class Application { await this._start(); await this.code.waitForElement('.explorer-folders-view'); - if (expectWalkthroughPart) { - await this.code.waitForElement(`.editor-instance > div > div.welcomePageFocusElement[tabIndex="0"]`); - } + // https://github.com/microsoft/vscode/issues/118748 + // if (expectWalkthroughPart) { + // await this.code.waitForElement(`.editor-instance > div > div.welcomePageFocusElement[tabIndex="0"]`); + // } } async restart(options: { workspaceOrFolder?: string, extraArgs?: string[] }): Promise {