mirror of
https://gitlab.nic.cz/turris/reforis/foris-js.git
synced 2025-06-16 13:46:16 +02:00
Wi-Fi settings form
This commit is contained in:
@ -14,30 +14,30 @@ import { RadioSet } from "../RadioSet";
|
||||
const TEST_CHOICES = [
|
||||
{
|
||||
label: "label",
|
||||
value: "value"
|
||||
value: "value",
|
||||
},
|
||||
{
|
||||
label: "another label",
|
||||
value: "another value"
|
||||
value: "another value",
|
||||
},
|
||||
{
|
||||
label: "another one label",
|
||||
value: "another on value"
|
||||
}
|
||||
value: "another on value",
|
||||
},
|
||||
];
|
||||
|
||||
describe("<RadioSet/>", () => {
|
||||
it("Render radio set", () => {
|
||||
const { container } = render(
|
||||
<RadioSet
|
||||
name={"test_name"}
|
||||
label='Radios set label'
|
||||
value='value'
|
||||
name="test_name"
|
||||
label="Radios set label"
|
||||
value="value"
|
||||
choices={TEST_CHOICES}
|
||||
helpText={"Some help text"}
|
||||
helpText="Some help text"
|
||||
onChange={() => {
|
||||
}}
|
||||
/>
|
||||
/>,
|
||||
);
|
||||
expect(container.firstChild)
|
||||
.toMatchSnapshot();
|
||||
|
Reference in New Issue
Block a user