(listBoxProps, itemProps)
| 68 | }; |
| 69 | |
| 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}); |