import React, { forwardRef } from 'react'; import type { InputNumberProps } from '..'; import InputNumber from '..'; import focusTest from '../../../tests/shared/focusTest'; import { fireEvent, render } from '../../../tests/utils'; describe('prefix', () => { focusTest( forwardRef((props, ref) => ( )), { refFocus: true }, ); it('should support className when has prefix', () => { const { container } = render(); expect((container.firstChild as HTMLElement)?.className.includes('my-class-name')).toBe(true); expect(container.querySelector('input')?.className.includes('my-class-name')).toBe(false); }); it('should trigger focus when prefix is clicked', () => { const { container } = render(123} />); const mockFocus = jest.spyOn(container.querySelector('input')!, 'focus'); fireEvent.click(container.querySelector('i')!); expect(mockFocus).toHaveBeenCalled(); }); });