mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
22 lines
757 B
TypeScript
22 lines
757 B
TypeScript
import { ReactNode } from 'react';
|
|
import { render, screen } from '@testing-library/react';
|
|
import { ChartCard } from '../../../src/visits/charts/ChartCard';
|
|
|
|
describe('<ChartCard />', () => {
|
|
const setUp = (title: Function | string = '', footer?: ReactNode) => render(
|
|
<ChartCard title={title} footer={footer} />,
|
|
);
|
|
|
|
it.each([
|
|
['the title', 'the title'],
|
|
[() => 'the title from func', 'the title from func'],
|
|
])('properly renders title by parsing provided value', (title, expectedTitle) => {
|
|
setUp(title);
|
|
expect(screen.getByText(expectedTitle)).toBeInTheDocument();
|
|
});
|
|
|
|
it('renders footer only when provided', () => {
|
|
setUp('', 'the footer');
|
|
expect(screen.getByText('the footer')).toBeInTheDocument();
|
|
});
|
|
});
|