* Checks if the test extension loaded
()
| 366 | * Checks if the test extension loaded |
| 367 | */ |
| 368 | async waitForTestExtensionLoaded(): Promise<void> { |
| 369 | const selector = "text=test extension loaded" |
| 370 | this.codeServer.logger.debug("Waiting for test extension to load...") |
| 371 | |
| 372 | await this.page.waitForSelector(selector) |
| 373 | } |
| 374 | |
| 375 | /** |
| 376 | * Focuses the integrated terminal by navigating through the command palette. |
no outgoing calls