Allow welcome page to not be active on account of focus potentially going to a getting started item.

This commit is contained in:
Jackson Kearl 2021-02-18 18:57:14 -08:00
parent c3695af6d2
commit 096e5555b6

View file

@ -73,7 +73,7 @@ export class Application {
await this.code.waitForElement('.explorer-folders-view');
if (expectWalkthroughPart) {
await this.code.waitForActiveElement(`.editor-instance > div > div.welcomePageFocusElement[tabIndex="0"]`);
await this.code.waitForElement(`.editor-instance > div > div.welcomePageFocusElement[tabIndex="0"]`);
}
}