mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
29 lines
700 B
JavaScript
29 lines
700 B
JavaScript
import React from 'react';
|
|
import { shallow, render } from 'enzyme';
|
|
import Radio from '../radio';
|
|
|
|
describe('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();
|
|
});
|
|
});
|