Remove waiting for welcome page while we are experimenting with what the welcome page will be

Fixes #118748
This commit is contained in:
Jackson Kearl 2021-03-11 09:23:34 -08:00
parent d574f8e916
commit ac0008a25b
No known key found for this signature in database
GPG key ID: DA09A59C409FC400

View file

@ -72,9 +72,10 @@ export class Application {
await this._start(); await this._start();
await this.code.waitForElement('.explorer-folders-view'); await this.code.waitForElement('.explorer-folders-view');
if (expectWalkthroughPart) { // https://github.com/microsoft/vscode/issues/118748
await this.code.waitForElement(`.editor-instance > div > div.welcomePageFocusElement[tabIndex="0"]`); // if (expectWalkthroughPart) {
} // await this.code.waitForElement(`.editor-instance > div > div.welcomePageFocusElement[tabIndex="0"]`);
// }
} }
async restart(options: { workspaceOrFolder?: string, extraArgs?: string[] }): Promise<any> { async restart(options: { workspaceOrFolder?: string, extraArgs?: string[] }): Promise<any> {