* Wait for a tab to open for the specified file.
(file: string)
| 420 | * Wait for a tab to open for the specified file. |
| 421 | */ |
| 422 | async waitForTab(file: string): Promise<void> { |
| 423 | await this.page.waitForSelector(`.tab :text("${path.basename(file)}")`) |
| 424 | } |
| 425 | |
| 426 | /** |
| 427 | * See if the specified tab is open. |
no outgoing calls
no test coverage detected