mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
2a3fc818d0
* refactor(radio): rewrite with hook * fix lint
36 lines
1.0 KiB
JavaScript
36 lines
1.0 KiB
JavaScript
import React from 'react';
|
|
import { mount, render } from 'enzyme';
|
|
import Radio, { Group, Button } from '..';
|
|
import focusTest from '../../../tests/shared/focusTest';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
import rtlTest from '../../../tests/shared/rtlTest';
|
|
|
|
describe('Radio', () => {
|
|
focusTest(Radio, { refFocus: true });
|
|
mountTest(Radio);
|
|
mountTest(Group);
|
|
mountTest(Button);
|
|
|
|
rtlTest(Radio);
|
|
rtlTest(Group);
|
|
rtlTest(Button);
|
|
|
|
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();
|
|
});
|
|
});
|