diff options
| author | Armand Philippot <git@armandphilippot.com> | 2023-09-27 17:38:23 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2023-10-24 12:25:00 +0200 |
| commit | 7255d25f6834a208c0ed44636356cc260f6ab6ba (patch) | |
| tree | 88016a958190f766a3ac0ab4b77f4732e17502e8 /src/components/atoms/modal/modal.test.tsx | |
| parent | ba793e043e4d8515b1a9ea490ee2c5f92b1fd6c2 (diff) | |
refactor(components): rewrite Heading component
* remove `alignment` and `withMargin` props (consumer should handle
that)
* move styles to Sass placeholders to avoid repeats with headings
coming from WordPress
* refactor some other components that depend on Heading to avoid ESlint
errors
Diffstat (limited to 'src/components/atoms/modal/modal.test.tsx')
| -rw-r--r-- | src/components/atoms/modal/modal.test.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/atoms/modal/modal.test.tsx b/src/components/atoms/modal/modal.test.tsx index 6e7d29e..dfa4a88 100644 --- a/src/components/atoms/modal/modal.test.tsx +++ b/src/components/atoms/modal/modal.test.tsx @@ -1,6 +1,6 @@ import { describe, expect, it } from '@jest/globals'; -import { render, screen } from '../../../../tests/utils'; -import { Heading } from '../headings'; +import { render, screen as rtlScreen } from '../../../../tests/utils'; +import { Heading } from '../heading'; import { Modal } from './modal'; const title = 'A custom title'; @@ -16,11 +16,11 @@ describe('Modal', () => { {children} </Modal> ); - expect(screen.getByRole('heading', { level })).toHaveTextContent(title); + expect(rtlScreen.getByRole('heading', { level })).toHaveTextContent(title); }); it('renders the modal body', () => { render(<Modal>{children}</Modal>); - expect(screen.getByText(children)).toBeInTheDocument(); + expect(rtlScreen.getByText(children)).toBeInTheDocument(); }); }); |
