You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/main/test/specs/Select.spec.js
+27-2
Original file line number
Diff line number
Diff line change
@@ -111,13 +111,13 @@ describe("Select general interaction", () => {
111
111
select.keys("ArrowDown");
112
112
assert.ok(selectText.getHTML(false).indexOf(EXPECTED_SELECTION_TEXT2),"Arrow Down should change selected item");
113
113
assert.strictEqual(selectionText.getHTML(false),EXPECTED_SELECTION_TEXT2,"Selection announcement text should be equalt to the current selected item's text");
114
-
114
+
115
115
// change previewed item with picker opened
116
116
select.click();
117
117
select.keys("ArrowUp");
118
118
assert.strictEqual(selectionText.getHTML(false),EXPECTED_SELECTION_TEXT1,"Selection announcement text should be equalt to the current selected item's text");
119
119
select.keys("Escape");
120
-
120
+
121
121
// change selection with picker opened
122
122
select.click();
123
123
select.keys("ArrowUp");
@@ -205,6 +205,31 @@ describe("Select general interaction", () => {
205
205
select.keys("Escape");
206
206
});
207
207
208
+
it("changes selection with typing single letter",()=>{
0 commit comments