aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/forms/labelled-select.test.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2023-09-22 19:34:01 +0200
committerArmand Philippot <git@armandphilippot.com>2023-10-24 12:23:48 +0200
commita6ff5eee45215effb3344cb5d631a27a7c0369aa (patch)
tree5051747acf72318b4fc5c18d603e3757fbefdfdb /src/components/molecules/forms/labelled-select.test.tsx
parent651ea4fc992e77d2f36b3c68f8e7a70644246067 (diff)
refactor(components): rewrite form components
Diffstat (limited to 'src/components/molecules/forms/labelled-select.test.tsx')
-rw-r--r--src/components/molecules/forms/labelled-select.test.tsx25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/components/molecules/forms/labelled-select.test.tsx b/src/components/molecules/forms/labelled-select.test.tsx
deleted file mode 100644
index 1ef4a25..0000000
--- a/src/components/molecules/forms/labelled-select.test.tsx
+++ /dev/null
@@ -1,25 +0,0 @@
-import { render, screen } from '../../../../tests/utils';
-import { LabelledSelect } from './labelled-select';
-
-const selectOptions = [
- { id: 'option1', name: 'Option 1', value: 'option1' },
- { id: 'option2', name: 'Option 2', value: 'option2' },
- { id: 'option3', name: 'Option 3', value: 'option3' },
-];
-
-describe('LabelledSelect', () => {
- it('renders a labelled select', () => {
- render(
- <LabelledSelect
- id="jest-select-field"
- name="jest-select-field"
- label="Jest select field"
- options={selectOptions}
- value="option1"
- setValue={() => null}
- />
- );
- expect(screen.getByLabelText('Jest select field')).toBeInTheDocument();
- expect(screen.getByRole('combobox')).toHaveValue('option1');
- });
-});