mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
c34caad24c
* test: js => ts * test: add test * fix: fix eslint error * test: add test case * fix: fix test error * fix: fix eslint error * fix: fix eslint error * fix: eslint error fix * fix: fallback eslint config & add test case * test: add all test case * fix: bugfix * fix: bugFix * fix: bugFix * fix: bugFix * fix: lint * fix: add React.createRef * fix: add breadcrumbName in Routes * fix: any commit for restart ci/cd * fix: remove type * fix: test fix * fix: test fix * fix: add ts-ignore for id * test: add Icon test case * test: remove ts-ignore * test: add Icon test case
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import React from 'react';
|
|
import Radio, { Button, Group } from '..';
|
|
import focusTest from '../../../tests/shared/focusTest';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
import rtlTest from '../../../tests/shared/rtlTest';
|
|
|
|
import { render, fireEvent } from '../../../tests/utils';
|
|
|
|
describe('Radio', () => {
|
|
focusTest(Radio, { refFocus: true });
|
|
mountTest(Radio);
|
|
mountTest(Group);
|
|
mountTest(Button);
|
|
|
|
rtlTest(Radio);
|
|
rtlTest(Group);
|
|
rtlTest(Button);
|
|
|
|
it('should render correctly', () => {
|
|
const { container } = render(<Radio className="customized">Test</Radio>);
|
|
expect(container.firstChild).toMatchSnapshot();
|
|
});
|
|
|
|
it('responses hover events', () => {
|
|
const onMouseEnter = jest.fn();
|
|
const onMouseLeave = jest.fn();
|
|
|
|
const { container } = render(<Radio onMouseEnter={onMouseEnter} onMouseLeave={onMouseLeave} />);
|
|
|
|
fireEvent.mouseEnter(container.querySelector('label')!);
|
|
expect(onMouseEnter).toHaveBeenCalled();
|
|
|
|
fireEvent.mouseLeave(container.querySelector('label')!);
|
|
expect(onMouseLeave).toHaveBeenCalled();
|
|
});
|
|
});
|