Simulate events on the root node in the wrapper. It must be a single-node wrapper.
event
(String
): The event name to be simulated...args
(Any
[optional]): A mock event object that will get passed through to the event handlers.ShallowWrapper
: Returns itself.
class Foo extends React.Component { constructor(props) { super(props); this.state = { count: 0 }; } render() { const { count } = this.state; return ( <div> <div className={`clicks-${count}`}> {count} clicks </div> <a href="url" onClick={() => { this.setState({ count: count + 1 }); }}> Increment </a> </div> ); } } const wrapper = shallow(<Foo />); expect(wrapper.find('.clicks-0').length).to.equal(1); wrapper.find('a').simulate('click'); expect(wrapper.find('.clicks-1').length).to.equal(1);
.simulate()
on the actual node that has the event handler set..simulate()
will in fact target the component's prop based on the event you give it. For example, .simulate('click')
will actually get the onClick
prop and call it.event.preventDefault()
or accessing any of its properties you must provide a mock event object with the properties your code requires.
© 2015 Airbnb, Inc.
Licensed under the MIT License.
https://airbnb.io/enzyme/docs/api/ShallowWrapper/simulate.html