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