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
Instead of using a keyCode, I used a key, in the case of 'Enter', using mount:
mount
wrapper.find('input').simulate('keypress', {key: 'Enter'})