diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-05-30 19:39:20 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-05-31 23:15:11 +0200 |
| commit | ae384aec5084b9fb9f02166890686a37d1260ef2 (patch) | |
| tree | 59f2b2d53513e5d69bafa1323f64844dd00be28a /src/components/atoms/forms/fieldset.test.tsx | |
| parent | 782cc0a31a866519fb7c3e18a523b347d3e40238 (diff) | |
chore: add a Fieldset component
Diffstat (limited to 'src/components/atoms/forms/fieldset.test.tsx')
| -rw-r--r-- | src/components/atoms/forms/fieldset.test.tsx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/components/atoms/forms/fieldset.test.tsx b/src/components/atoms/forms/fieldset.test.tsx new file mode 100644 index 0000000..0f84f83 --- /dev/null +++ b/src/components/atoms/forms/fieldset.test.tsx @@ -0,0 +1,11 @@ +import { render, screen } from '@test-utils'; +import Fieldset from './fieldset'; +import { body, legend } from './fieldset.fixture'; + +describe('Fieldset', () => { + it('renders a legend and a body', () => { + render(<Fieldset legend={legend}>{body}</Fieldset>); + expect(screen.findByRole('group', { name: legend })).toBeInTheDocument(); + expect(screen.findByText(body)).toBeInTheDocument(); + }); +}); |
