2019-01-03 16:00:55 +03:00
|
|
|
import React from 'react';
|
|
|
|
import { render, mount } from 'enzyme';
|
|
|
|
import { renderToJson } from 'enzyme-to-json';
|
|
|
|
import { SegmentedControl } from '../src';
|
|
|
|
|
2020-08-08 23:26:39 +03:00
|
|
|
describe('SegmentedControl', function () {
|
2019-01-03 16:00:55 +03:00
|
|
|
it('renders correctly', () => {
|
|
|
|
const wrapper = render(
|
|
|
|
<SegmentedControl
|
|
|
|
values={['Button1', 'Button2', 'Button3']}
|
|
|
|
selected="Button1"
|
|
|
|
disabled={false}
|
2020-09-09 17:35:22 +03:00
|
|
|
onClick={() => {
|
|
|
|
// noop
|
|
|
|
}}
|
2019-01-03 16:00:55 +03:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
expect(renderToJson(wrapper)).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
it('should handle the click event', () => {
|
|
|
|
const onClick = jest.fn();
|
2019-01-10 21:51:14 +03:00
|
|
|
const wrapper = mount(
|
|
|
|
<SegmentedControl
|
|
|
|
values={['Button1', 'Button2', 'Button3']}
|
|
|
|
selected="Button1"
|
|
|
|
disabled={false}
|
|
|
|
onClick={onClick}
|
|
|
|
/>
|
2019-01-03 16:00:55 +03:00
|
|
|
);
|
|
|
|
|
2020-08-08 23:26:39 +03:00
|
|
|
wrapper.find('button').first().simulate('click');
|
2019-01-03 16:00:55 +03:00
|
|
|
expect(onClick).toBeCalled();
|
|
|
|
});
|
|
|
|
});
|