chore: resolve conflict of feature merge master

pull/36683/head
zombiej 3 years ago
parent 2b46b3e6e1
commit 46d146d692

@ -1,6 +1,4 @@
import React from 'react'; import React from 'react';
import { mount, render } from 'enzyme';
import { fireEvent, render as testLibRender } from '@testing-library/react';
import Radio from '..'; import Radio from '..';
import { render, fireEvent } from '../../../tests/utils'; import { render, fireEvent } from '../../../tests/utils';
@ -240,7 +238,7 @@ describe('Radio Group', () => {
it('onBlur & onFocus should work', () => { it('onBlur & onFocus should work', () => {
const handleBlur = jest.fn(); const handleBlur = jest.fn();
const handleFocus = jest.fn(); const handleFocus = jest.fn();
const { container } = testLibRender( const { container } = render(
<Radio.Group options={['1', '2', '3']} onBlur={handleBlur} onFocus={handleFocus} />, <Radio.Group options={['1', '2', '3']} onBlur={handleBlur} onFocus={handleFocus} />,
); );
fireEvent.focus(container.firstChild); fireEvent.focus(container.firstChild);

Loading…
Cancel
Save