mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 06:09:34 +08:00
1a0a06fca9
Basic support prefixCls.
32 lines
802 B
JavaScript
32 lines
802 B
JavaScript
import React from 'react';
|
|
import { mount, 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 = mount(
|
|
<Radio
|
|
onMouseEnter={onMouseEnter}
|
|
onMouseLeave={onMouseLeave}
|
|
/>
|
|
);
|
|
|
|
wrapper.find('label').simulate('mouseenter');
|
|
expect(onMouseEnter).toHaveBeenCalled();
|
|
|
|
wrapper.find('label').simulate('mouseleave');
|
|
expect(onMouseLeave).toHaveBeenCalled();
|
|
});
|
|
});
|