mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:59:38 +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
70 lines
1.8 KiB
TypeScript
70 lines
1.8 KiB
TypeScript
import React from 'react';
|
|
import { act } from 'react-dom/test-utils';
|
|
import AutoComplete from '..';
|
|
import { render } from '../../../tests/utils';
|
|
|
|
describe('AutoComplete children could be focus', () => {
|
|
beforeAll(() => {
|
|
jest.useFakeTimers();
|
|
});
|
|
|
|
let container: HTMLDivElement;
|
|
beforeEach(() => {
|
|
container = document.createElement('div');
|
|
document.body.appendChild(container);
|
|
});
|
|
|
|
afterAll(() => {
|
|
jest.useRealTimers();
|
|
});
|
|
|
|
afterEach(() => {
|
|
document.body.removeChild(container);
|
|
});
|
|
|
|
it('focus() and onFocus', () => {
|
|
const handleFocus = jest.fn();
|
|
const { container: wrapper } = render(<AutoComplete onFocus={handleFocus} />, { container });
|
|
wrapper.querySelector('input')?.focus();
|
|
act(() => {
|
|
jest.runAllTimers();
|
|
});
|
|
expect(handleFocus).toHaveBeenCalled();
|
|
});
|
|
|
|
it('blur() and onBlur', () => {
|
|
const handleBlur = jest.fn();
|
|
const { container: wrapper } = render(<AutoComplete onBlur={handleBlur} />, { container });
|
|
wrapper.querySelector('input')?.focus();
|
|
act(() => {
|
|
jest.runAllTimers();
|
|
});
|
|
wrapper.querySelector('input')?.blur();
|
|
act(() => {
|
|
jest.runAllTimers();
|
|
});
|
|
expect(handleBlur).toHaveBeenCalled();
|
|
});
|
|
|
|
it('child.ref should work', () => {
|
|
const mockRef = jest.fn();
|
|
render(
|
|
<AutoComplete dataSource={[]}>
|
|
<input ref={mockRef} />
|
|
</AutoComplete>,
|
|
);
|
|
expect(mockRef).toHaveBeenCalled();
|
|
});
|
|
|
|
it('child.ref instance should support be focused and blured', () => {
|
|
const inputRef = React.createRef<HTMLInputElement>();
|
|
render(
|
|
<AutoComplete dataSource={[]}>
|
|
<input ref={inputRef} />
|
|
</AutoComplete>,
|
|
);
|
|
expect(typeof inputRef.current?.focus).toBe('function');
|
|
expect(typeof inputRef.current?.blur).toBe('function');
|
|
});
|
|
});
|