diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-04-07 19:00:13 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-04-07 19:05:09 +0200 |
| commit | 06396f8e942c58254ee4e87f610d3e33197e0d73 (patch) | |
| tree | 30e003c15c9d6b3b5428d4af833a967e72843f09 /src/components/atoms/lists/description-list.test.tsx | |
| parent | ff2b6c55cc691f0b62396d9ba481c75fc870cd6a (diff) | |
chore: add a DescriptionList component
Diffstat (limited to 'src/components/atoms/lists/description-list.test.tsx')
| -rw-r--r-- | src/components/atoms/lists/description-list.test.tsx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/components/atoms/lists/description-list.test.tsx b/src/components/atoms/lists/description-list.test.tsx new file mode 100644 index 0000000..d3f7045 --- /dev/null +++ b/src/components/atoms/lists/description-list.test.tsx @@ -0,0 +1,20 @@ +import { render } from '@test-utils'; +import DescriptionList, { DescriptionListItem } from './description-list'; + +const items: DescriptionListItem[] = [ + { id: 'term-1', term: 'Term 1:', value: ['Value for term 1'] }, + { id: 'term-2', term: 'Term 2:', value: ['Value for term 2'] }, + { + id: 'term-3', + term: 'Term 3:', + value: ['Value 1 for term 3', 'Value 2 for term 3', 'Value 3 for term 3'], + }, + { id: 'term-4', term: 'Term 4:', value: ['Value for term 4'] }, +]; + +describe('DescriptionList', () => { + it('renders a list of terms and description', () => { + const { container } = render(<DescriptionList items={items} />); + expect(container).toBeDefined(); + }); +}); |
