import React from 'react'; import { render, mount } from 'enzyme'; import { renderToJson } from 'enzyme-to-json'; import { SegmentedControl } from '../src'; describe('SegmentedControl', function () { it('renders correctly', () => { const wrapper = render( { // noop }} /> ); expect(renderToJson(wrapper)).toMatchSnapshot(); }); it('should handle the click event', () => { const onClick = jest.fn(); const wrapper = mount( ); wrapper.find('button').first().simulate('click'); expect(onClick).toBeCalled(); }); });