smoke tests - try other ways of ensuring the editor is open for data migration (#129279)

This commit is contained in:
Benjamin Pasero
2021-08-04 15:32:21 +02:00
parent e007ca899c
commit c28ea165cd
2 changed files with 6 additions and 13 deletions

View File

@@ -70,14 +70,9 @@ export class Application {
return this._userDataPath;
}
async start(expectWalkthroughPart = true): Promise<any> {
async start(): Promise<any> {
await this._start();
await this.code.waitForElement('.explorer-folders-view');
// 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<any> {