blob: dfa4a88b7589784275a6eab1d35d39e037abccba (
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
26
|
import { describe, expect, it } from '@jest/globals';
import { render, screen as rtlScreen } from '../../../../tests/utils';
import { Heading } from '../heading';
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(rtlScreen.getByRole('heading', { level })).toHaveTextContent(title);
});
it('renders the modal body', () => {
render(<Modal>{children}</Modal>);
expect(rtlScreen.getByText(children)).toBeInTheDocument();
});
});
|