mirror of
https://github.com/vector-im/element-web.git
synced 2026-06-12 19:49:22 +00:00
e58e803368
* Upgrade to compound 9.2.0 ... to pick up the export of PageHeader * update snapshots * update shared-components snapshots * More snapshot updates * update snapshot * GHA: Show disk usage on failure
51 lines
1.1 KiB
Plaintext
51 lines
1.1 KiB
Plaintext
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
|
|
|
|
exports[`Module Components should override the factory for a ModuleSpinner 1`] = `
|
|
<DocumentFragment>
|
|
<div
|
|
class="mx_Spinner"
|
|
>
|
|
<svg
|
|
aria-label="Loading…"
|
|
class="_icon_1855a_18"
|
|
data-testid="spinner"
|
|
fill="currentColor"
|
|
height="1em"
|
|
role="progressbar"
|
|
style="width: 32px; height: 32px;"
|
|
viewBox="0 0 24 24"
|
|
width="1em"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
clip-rule="evenodd"
|
|
d="M12 4.031a8 8 0 1 0 8 8 1 1 0 0 1 2 0c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10a1 1 0 1 1 0 2"
|
|
fill-rule="evenodd"
|
|
/>
|
|
</svg>
|
|
</div>
|
|
</DocumentFragment>
|
|
`;
|
|
|
|
exports[`Module Components should override the factory for a TextInputField 1`] = `
|
|
<DocumentFragment>
|
|
<div
|
|
class="mx_Field mx_Field_input"
|
|
>
|
|
<input
|
|
autocomplete="off"
|
|
id="mx_Field_1"
|
|
label="My Label"
|
|
placeholder="My Label"
|
|
type="text"
|
|
value="My Value"
|
|
/>
|
|
<label
|
|
for="mx_Field_1"
|
|
>
|
|
My Label
|
|
</label>
|
|
</div>
|
|
</DocumentFragment>
|
|
`;
|