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