blob: c7211f0aed5ed2cc91e058e1ae35e318793e8eba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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', () =&g
|