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