aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/lists/description-list-group.test.tsx
blob: 205dad5f0748318e82104e51df1b19705f14b901 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { describe, expect, it } from '@jest/globals';
import { render, screen } from '../../../../tests/utils';
import { DescriptionListGroup } from './description-list-group';

const itemLabel = 'Repellendus corporis facilis';
const itemValue = ['quos', 'eum'];

describe('DescriptionListGroup', () => {
  it('renders a couple of label', () => {
    render(<DescriptionListGroup label={itemLabel} value={itemValue} />);
    expect(screen.getByRole('term')).toHaveTextContent(itemLabel);
  });

  it('renders the right number of values', () => {
    render(<DescriptionListGroup label={itemLabel} value={itemValue} />);
    expect(screen.getAllByRole('definition')).toHaveLength(itemValue.length);
  });
});