blob: 5f32d02af024718161efc81686656b7c78cd9121 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import { render, screen } from '../../../../tests/utils';
import { Heading } from '../headings';
import { Modal } from './modal';
const title = 'A custom title';
const children =
'Labore ullam delectus sit modi quam dolores. Ratione id sint aliquid facilis ipsum. Unde necessitatibus provident minus.';
describe('Modal', () => {
it('renders a title', () => {
const level = 2;
render(
<Modal heading={<Heading level={level}>{title}</Heading>}>
{children}
</Modal>
);
expect(screen.getByRole('heading', { level })).toHaveTextContent(title);
});
it('renders the modal body', () => {
render(<Modal>{children}</Modal>);
expect(screen.getByText(children)).toBeInTheDocument();
});
});
|