mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
33 lines
1.3 KiB
TypeScript
33 lines
1.3 KiB
TypeScript
import { screen, waitFor } from '@testing-library/react';
|
|
import { Mock } from 'ts-mockery';
|
|
import { DateInput, DateInputProps } from '../../src/utils/DateInput';
|
|
import { renderWithEvents } from '../__helpers__/setUpTest';
|
|
|
|
describe('<DateInput />', () => {
|
|
const setUp = (props: Partial<DateInputProps> = {}) => renderWithEvents(
|
|
<DateInput {...Mock.of<DateInputProps>(props)} />,
|
|
);
|
|
|
|
it('shows calendar icon when input is not clearable', () => {
|
|
setUp({ isClearable: false });
|
|
expect(screen.getByRole('img', { hidden: true })).toBeInTheDocument();
|
|
});
|
|
|
|
it('shows calendar icon when input is clearable but selected value is nil', () => {
|
|
setUp({ isClearable: true, selected: null });
|
|
expect(screen.getByRole('img', { hidden: true })).toBeInTheDocument();
|
|
});
|
|
|
|
it('does not show calendar icon when input is clearable', () => {
|
|
setUp({ isClearable: true, selected: new Date() });
|
|
expect(screen.queryByRole('img', { hidden: true })).not.toBeInTheDocument();
|
|
});
|
|
|
|
it('shows popper on element click', async () => {
|
|
const { user, container } = setUp({ placeholderText: 'foo' });
|
|
|
|
expect(container.querySelector('.react-datepicker')).not.toBeInTheDocument();
|
|
await user.click(screen.getByPlaceholderText('foo'));
|
|
await waitFor(() => expect(container.querySelector('.react-datepicker')).toBeInTheDocument());
|
|
});
|
|
});
|