Skip to content

Commit 2e001f2

Browse files
committed
Rename picker to quick input to match VS Code terminology
1 parent ee850b5 commit 2e001f2

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

test/e2e/models/CodeServer.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)