Skip to content
Snippets Groups Projects
Commit 7e929c82 authored by Alexandros Georgantas's avatar Alexandros Georgantas
Browse files

New snapshots added

parent 9377e5b3
No related branches found
No related tags found
No related merge requests found
...@@ -21,23 +21,28 @@ exports[`AppBar Snapshot 1`] = ` ...@@ -21,23 +21,28 @@ exports[`AppBar Snapshot 1`] = `
className="root" className="root"
> >
<svg <svg
fill="none"
height={16} height={16}
stroke="var(--color-local, black)"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
viewBox="0 0 24 24" viewBox="0 0 24 24"
width={16} width={16}
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
> >
<path <path
d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2" d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"
fill="none"
stroke="var(--color-local, black)"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
/> />
<circle <circle
cx="12" cx="12"
cy="7" cy="7"
fill="none"
r="4" r="4"
stroke="var(--color-local, black)"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
/> />
</svg> </svg>
</span> </span>
......
// Jest Snapshot v1, https://goo.gl/fbAQLP // Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`StateItem Snapshot 1`] = `
<span
className="root"
disabled={false}
onClick={[Function]}
onKeyPress={[Function]}
role="button"
tabIndex="0"
>
Cleaning
</span>
`;
exports[`StateItem is rendered correctly 1`] = ` exports[`StateItem is rendered correctly 1`] = `
<span <span
className="root" className="root"
......
// Jest Snapshot v1, https://goo.gl/fbAQLP // Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`StateItem Snapshot 1`] = `
<div
className="stateListContainer"
>
<div
className="itemContainer"
>
<span
className="root"
disabled={false}
onClick={[Function]}
onKeyPress={[Function]}
role="button"
tabIndex="0"
>
To Clean
</span>
<svg
className="delimiter"
fill="none"
height={16}
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
viewBox="0 0 24 24"
width={16}
xmlns="http://www.w3.org/2000/svg"
>
<polyline
points="9 18 15 12 9 6"
/>
</svg>
</div>
<div
className="itemContainer"
>
<span
className="root"
disabled={false}
onClick={[Function]}
onKeyPress={[Function]}
role="button"
tabIndex="0"
>
To Edit
</span>
<svg
className="delimiter"
fill="none"
height={16}
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
viewBox="0 0 24 24"
width={16}
xmlns="http://www.w3.org/2000/svg"
>
<polyline
points="9 18 15 12 9 6"
/>
</svg>
</div>
<div
className="itemContainer"
>
<span
className="root"
disabled={false}
onClick={[Function]}
onKeyPress={[Function]}
role="button"
tabIndex="0"
>
To Review
</span>
<svg
className="delimiter"
fill="none"
height={16}
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
viewBox="0 0 24 24"
width={16}
xmlns="http://www.w3.org/2000/svg"
>
<polyline
points="9 18 15 12 9 6"
/>
</svg>
</div>
<div
className="itemContainer"
>
<span
className="root"
disabled={false}
onClick={[Function]}
onKeyPress={[Function]}
role="button"
tabIndex="0"
>
To Style
</span>
</div>
</div>
`;
exports[`StateList is rendered correctly 1`] = ` exports[`StateList is rendered correctly 1`] = `
<div <div
className="stateListContainer" className="stateListContainer"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment