ReactTestUtils makes it easy to test React components in the testing framework of your choice (we use Jest).
var ReactTestUtils = require('react-addons-test-utils');
Airbnb has released a testing utility called Enzyme, which makes it easy to assert, manipulate, and traverse your React Components' output. If you're deciding on a unit testing library, it's worth checking out: http://airbnb.io/enzyme/
Simulate
Simulate.{eventName}(
DOMElement element,
[object eventData]
)
Simulate an ev