We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cd0a63 commit 5a7b7beCopy full SHA for 5a7b7be
test/automation/src/code.ts
@@ -251,13 +251,7 @@ export class Code {
251
}
252
253
async whenWorkbenchRestored(): Promise<void> {
254
- try {
255
- await this.poll(() => this.driver.whenWorkbenchRestored(), () => true, `when workbench restored`);
256
- } catch (error) {
257
- // TODO: @sandy081 Remove this when 1.84.0 is out
258
- // whenWorkbenchRestored was not implemented in the driver before 1.84.0
259
- this.logger.log('whenWorkbenchRestored() timed out');
260
- }
+ await this.poll(() => this.driver.whenWorkbenchRestored(), () => true, `when workbench restored`);
261
262
263
getLocaleInfo(): Promise<ILocaleInfo> {
0 commit comments