mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
0a30315a32
Close #3455
24 lines
548 B
JavaScript
24 lines
548 B
JavaScript
import React from 'react';
|
|
import { shallow } from 'enzyme';
|
|
import Radio from '../../components/radio';
|
|
|
|
describe('Radio', () => {
|
|
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();
|
|
});
|
|
});
|