Remove workaround for #74875

This commit is contained in:
Rob Lourens 2019-09-04 14:52:47 -07:00
parent 5f36b0ea9a
commit 58c740aa48

View file

@ -47,8 +47,7 @@ export function setup() {
const app = this.app as Application; const app = this.app as Application;
await app.workbench.quickopen.openQuickOpen('*.*'); await app.workbench.quickopen.openQuickOpen('*.*');
// TODO roblourens: Go to files finds welcome page: issue 74875 await app.workbench.quickopen.waitForQuickOpenElements(names => names.length === 6);
await app.workbench.quickopen.waitForQuickOpenElements(names => names.length === 6 || names.length === 7);
await app.workbench.quickopen.closeQuickOpen(); await app.workbench.quickopen.closeQuickOpen();
}); });
@ -57,4 +56,4 @@ export function setup() {
await app.code.waitForTitle(title => /smoketest \(Workspace\)/i.test(title)); await app.code.waitForTitle(title => /smoketest \(Workspace\)/i.test(title));
}); });
}); });
} }