From 5fabc0d9dc12bfcfd760b796ce33505ff3883e94 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Thu, 25 Feb 2021 09:31:55 +0100 Subject: [PATCH] smoke test - remove code only needed for stable january release --- test/automation/src/application.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/test/automation/src/application.ts b/test/automation/src/application.ts index 809b3c2b2e4..35ee19cc0c5 100644 --- a/test/automation/src/application.ts +++ b/test/automation/src/application.ts @@ -73,12 +73,7 @@ export class Application { await this.code.waitForElement('.explorer-folders-view'); if (expectWalkthroughPart) { - if (this.quality === Quality.Stable) { - // TODO@bpasero remove me in March 2021 - await this.code.waitForActiveElement(`.editor-instance[data-editor-id="workbench.editor.walkThroughPart"] > div > div[tabIndex="0"]`); - } else { - await this.code.waitForElement(`.editor-instance > div > div.welcomePageFocusElement[tabIndex="0"]`); - } + await this.code.waitForElement(`.editor-instance > div > div.welcomePageFocusElement[tabIndex="0"]`); } }