I\'m trying to simulate a keyDown event, specifically for Enter, keyCode: 13. I\'ve tried a number of different ways of doing this, but none of them ar
keyDown
keyCode: 13
const wrapper = mount(); const input = wrapper.find('input'); input.props().onKeyDown({key: 'Enter'});