import { shallow } from 'enzyme' const props = { onClick: jest.fn() } const wrapper = <App {...props} /> const domNode = document.querySelector('#root') const component = shallow(wrapper, domNode) expect(app.instance().getList()).toBe([0, 1, 2])
Last updated 5 years ago
Was this helpful?