mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
9678d3fcfd
* Add test for select * Add focus() and blur() for AutoComplete * Add focus() and blur() to Cascader * Add focus test for input * Add focus() and blur() for Checkbox * Add focus() and blur() for Radio * Add focus() and blur() for Switch * Add blur() for TimePicker * Add focus() and blur() to TreeSelect
32 lines
778 B
JavaScript
32 lines
778 B
JavaScript
import React from 'react';
|
|
import { shallow, render } from 'enzyme';
|
|
import Radio from '../radio';
|
|
import focusTest from '../../../tests/shared/focusTest';
|
|
|
|
describe('Radio', () => {
|
|
focusTest(Radio);
|
|
|
|
it('should render correctly', () => {
|
|
const wrapper = render(<Radio className="customized">Test</Radio>);
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
|
|
it('responses hover events', () => {
|
|
const onMouseEnter = jest.fn();
|
|
const onMouseLeave = jest.fn();
|
|
|
|
const wrapper = shallow(
|
|
<Radio
|
|
onMouseEnter={onMouseEnter}
|
|
onMouseLeave={onMouseLeave}
|
|
/>
|
|
);
|
|
|
|
wrapper.simulate('mouseenter');
|
|
expect(onMouseEnter).toHaveBeenCalled();
|
|
|
|
wrapper.simulate('mouseleave');
|
|
expect(onMouseLeave).toHaveBeenCalled();
|
|
});
|
|
});
|