import { shallow } from 'enzyme' const props = { onClick: jest.fn() } const wrapper = <App {...props} /> const domNode = document.querySelector('#root') const component = shallow(wrapper, domNode) const selector = '.btn-add' const eventName = 'click' component.find(selector).simulate(eventName)
Last updated 5 years ago
Was this helpful?