aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/lists/description-list.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/lists/description-list.test.tsx')
-rw-r--r--src/components/atoms/lists/description-list.test.tsx21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/components/atoms/lists/description-list.test.tsx b/src/components/atoms/lists/description-list.test.tsx
deleted file mode 100644
index 2af92e2..0000000
--- a/src/components/atoms/lists/description-list.test.tsx
+++ /dev/null
@@ -1,21 +0,0 @@
-import { describe, expect, it } from '@jest/globals';
-import { render } from '../../../../tests/utils';
-import { DescriptionList, DescriptionListItem } from './description-list';
-
-const items: DescriptionListItem[] = [
- { id: 'term-1', label: 'Term 1:', value: ['Value for term 1'] },
- { id: 'term-2', label: 'Term 2:', value: ['Value for term 2'] },
- {
- id: 'term-3',
- label: 'Term 3:',
- value: ['Value 1 for term 3', 'Value 2 for term 3', 'Value 3 for term 3'],
- },
- { id: 'term-4', label: '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();
- });
-});