Try removing timeout in checkWindowReady

Part of #137847
This commit is contained in:
Daniel Imms 2021-12-06 06:35:57 -08:00
parent c515bf8c5e
commit 110345a97b

View file

@ -125,9 +125,5 @@ export class Application {
if (this.remote) {
await this.code.waitForTextContent('.monaco-workbench .statusbar-item[id="status.host"]', ' TestResolver', undefined, 2000);
}
// wait a bit, since focus might be stolen off widgets
// as soon as they open (e.g. quick access)
await new Promise(c => setTimeout(c, 1000));
}
}