* Open a file by using menus.
(file: string)
| 404 | * Open a file by using menus. |
| 405 | */ |
| 406 | async openFile(file: string) { |
| 407 | await this.navigateMenus(["File", "Open File..."]) |
| 408 | await this.navigateQuickInput([path.basename(file)]) |
| 409 | await this.waitForTab(file) |
| 410 | } |
| 411 | |
| 412 | /** |
| 413 | * Open a file through an external command. |
no test coverage detected