mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-03 06:11:48 +00:00
25 lines
689 B
TypeScript
25 lines
689 B
TypeScript
import { screen } from '@testing-library/react';
|
|
import { DoughnutChart } from '../../../src/visits/charts/DoughnutChart';
|
|
import { setUpCanvas } from '../../__helpers__/setUpTest';
|
|
|
|
describe('<DoughnutChart />', () => {
|
|
const stats = {
|
|
foo: 123,
|
|
bar: 456,
|
|
};
|
|
|
|
it('renders Doughnut with expected props', () => {
|
|
const { events } = setUpCanvas(<DoughnutChart stats={stats} />);
|
|
|
|
expect(events).toBeTruthy();
|
|
expect(events).toMatchSnapshot();
|
|
});
|
|
|
|
it('renders expected legend', () => {
|
|
setUpCanvas(<DoughnutChart stats={stats} />);
|
|
|
|
expect(screen.getByText('foo')).toBeInTheDocument();
|
|
expect(screen.getByText('bar')).toBeInTheDocument();
|
|
});
|
|
});
|