| 69 | let renderListbox = (listBoxProps, itemProps) => |
| 70 | render(<TestListBox {...{listBoxProps, itemProps}} />); |
| 71 | let keyPress = key => { |
| 72 | fireEvent.keyDown(document.activeElement, {key}); |
| 73 | fireEvent.keyUp(document.activeElement, {key}); |
| 74 | }; |
| 75 | |
| 76 | describe('ListBox', () => { |
| 77 | let user; |