2023-03-14 11:02:12 +03:00
|
|
|
import type { IconProp } from '@fortawesome/fontawesome-svg-core';
|
|
|
|
import { faAppleAlt, faCalendar, faTable } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import { screen } from '@testing-library/react';
|
2023-08-02 10:01:44 +03:00
|
|
|
import { IconInput } from '../../../src/utils/components/IconInput';
|
|
|
|
import { renderWithEvents } from '../../__helpers__/setUpTest';
|
2023-03-14 11:02:12 +03:00
|
|
|
|
|
|
|
describe('<IconInput />', () => {
|
|
|
|
const setUp = (icon: IconProp, placeholder?: string) => renderWithEvents(
|
|
|
|
<IconInput icon={icon} placeholder={placeholder} />,
|
|
|
|
);
|
|
|
|
|
|
|
|
it.each([faCalendar, faAppleAlt, faTable])('displays provided icon', (icon) => {
|
|
|
|
const { container } = setUp(icon);
|
|
|
|
expect(container).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('focuses input on icon click', async () => {
|
|
|
|
const { user } = setUp(faCalendar, 'foo');
|
|
|
|
|
|
|
|
expect(screen.getByPlaceholderText('foo')).not.toHaveFocus();
|
|
|
|
await user.click(screen.getByRole('img', { hidden: true }));
|
|
|
|
expect(screen.getByPlaceholderText('foo')).toHaveFocus();
|
|
|
|
});
|
|
|
|
});
|