aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/forms/radio-group.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/molecules/forms/radio-group.test.tsx')
-rw-r--r--src/components/molecules/forms/radio-group.test.tsx30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/components/molecules/forms/radio-group.test.tsx b/src/components/molecules/forms/radio-group.test.tsx
deleted file mode 100644
index c4a01e4..0000000
--- a/src/components/molecules/forms/radio-group.test.tsx
+++ /dev/null
@@ -1,30 +0,0 @@
-import { render, screen } from '../../../../tests/utils';
-import { RadioGroup } from './radio-group';
-import { getOptions, initialChoice, legend } from './radio-group.fixture';
-
-describe('RadioGroup', () => {
- it('renders a legend', () => {
- render(
- <RadioGroup
- initialChoice={initialChoice}
- legend={legend}
- options={getOptions()}
- />
- );
- expect(screen.findByRole('radiogroup', { name: legend })).toBeDefined();
- });
-
- it('renders the correct number of radio', () => {
- const options = getOptions();
-
- render(
- <RadioGroup
- initialChoice={initialChoice}
- legend={legend}
- options={options}
- />
- );
- const radios = screen.getAllByRole('radio');
- expect(radios).toHaveLength(options.length);
- });
-});