File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -297,7 +297,7 @@ export class CodeServerPage {
297297 */
298298 async openFile ( file : string ) {
299299 await this . navigateMenus ( [ "File" , "Open File" ] )
300- await this . navigatePicker ( [ path . basename ( file ) ] )
300+ await this . navigateQuickInput ( [ path . basename ( file ) ] )
301301 await this . waitForTab ( file )
302302 }
303303
@@ -427,9 +427,10 @@ export class CodeServerPage {
427427 }
428428
429429 /**
430- * Navigate through a currently opened picker, retrying on failure.
430+ * Navigate through a currently opened "quick input" widget, retrying on
431+ * failure.
431432 */
432- async navigatePicker ( items : string [ ] ) : Promise < void > {
433+ async navigateQuickInput ( items : string [ ] ) : Promise < void > {
433434 await this . navigateItems ( items , ".quick-input-widget" )
434435 }
435436
You can’t perform that action at this time.
0 commit comments