Skip to content

Commit

Permalink
Update snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
tlrobinson committed May 17, 2018
1 parent ca9f363 commit 63d79ef
Showing 1 changed file with 141 additions and 0 deletions.
141 changes: 141 additions & 0 deletions frontend/test/internal/__snapshots__/components.unit.spec.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,147 @@ exports[`ProgressBar should render "Default" correctly 1`] = `
</div>
`;

exports[`Radio should render "default" correctly 1`] = `
<ul
className="flex text-bold h3"
>
<li
className="flex align-center cursor-pointer mt1 mr2 text-brand-hover"
onClick={[Function]}
>
<input
checked={true}
className="Form-radio"
id="radio-1-0"
name="radio-1"
type="radio"
value={0}
/>
<span
className="text-brand"
>
Gadget
</span>
</li>
<li
className="flex align-center cursor-pointer mt1 mr2 text-brand-hover"
onClick={[Function]}
>
<input
checked={false}
className="Form-radio"
id="radio-1-1"
name="radio-1"
type="radio"
value={1}
/>
<span
className=""
>
Gizmo
</span>
</li>
</ul>
`;

exports[`Radio should render "show buttons" correctly 1`] = `
<ul
className="flex"
>
<li
className="flex align-center cursor-pointer mt1 mr2"
onClick={[Function]}
>
<input
checked={true}
className="Form-radio"
id="radio-2-0"
name="radio-2"
type="radio"
value={0}
/>
<label
htmlFor="radio-2-0"
/>
<span
className="text-brand"
>
Gadget
</span>
</li>
<li
className="flex align-center cursor-pointer mt1 mr2"
onClick={[Function]}
>
<input
checked={false}
className="Form-radio"
id="radio-2-1"
name="radio-2"
type="radio"
value={1}
/>
<label
htmlFor="radio-2-1"
/>
<span
className=""
>
Gizmo
</span>
</li>
</ul>
`;

exports[`Radio should render "vertical" correctly 1`] = `
<ul
className="flex flex-column"
>
<li
className="flex align-center cursor-pointer mt1 mr2"
onClick={[Function]}
>
<input
checked={true}
className="Form-radio"
id="radio-3-0"
name="radio-3"
type="radio"
value={0}
/>
<label
htmlFor="radio-3-0"
/>
<span
className="text-brand"
>
Gadget
</span>
</li>
<li
className="flex align-center cursor-pointer mt1 mr2"
onClick={[Function]}
>
<input
checked={false}
className="Form-radio"
id="radio-3-1"
name="radio-3"
type="radio"
value={1}
/>
<label
htmlFor="radio-3-1"
/>
<span
className=""
>
Gizmo
</span>
</li>
</ul>
`;

exports[`Select should render "Default" correctly 1`] = `
<a
className="no-decoration"
Expand Down

0 comments on commit 63d79ef

Please sign in to comment.