mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-26 02:18:25 +08:00
8637a5d77d
* Take a Jest snapshot of a widget (AppTile) * Fix the comment * Update test/components/views/elements/AppTile-test.tsx Co-authored-by: Michael Telatynski <7t3chguy@gmail.com> * Add container --------- Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
65 lines
1.6 KiB
Plaintext
65 lines
1.6 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`AppTile for a pinned widget should render 1`] = `
|
|
<DocumentFragment>
|
|
<div
|
|
class="mx_AppTile"
|
|
id="1"
|
|
>
|
|
<div
|
|
class="mx_AppTileMenuBar"
|
|
>
|
|
<span
|
|
class="mx_AppTileMenuBar_title"
|
|
style="pointer-events: none;"
|
|
>
|
|
<span>
|
|
<img
|
|
alt=""
|
|
class="mx_BaseAvatar mx_BaseAvatar_image mx_WidgetAvatar"
|
|
data-testid="avatar-img"
|
|
loading="lazy"
|
|
src="image-file-stub"
|
|
style="width: 20px; height: 20px;"
|
|
/>
|
|
<b>
|
|
Example 1
|
|
</b>
|
|
<span />
|
|
</span>
|
|
</span>
|
|
<span
|
|
class="mx_AppTileMenuBar_widgets"
|
|
>
|
|
<div
|
|
class="mx_AccessibleButton mx_AppTileMenuBar_iconButton mx_AppTileMenuBar_iconButton--collapse"
|
|
role="button"
|
|
tabindex="0"
|
|
title="Un-maximise"
|
|
/>
|
|
<div
|
|
class="mx_AccessibleButton mx_AppTileMenuBar_iconButton mx_AppTileMenuBar_iconButton--minimise"
|
|
role="button"
|
|
tabindex="0"
|
|
title="Minimise"
|
|
/>
|
|
<div
|
|
aria-expanded="false"
|
|
aria-haspopup="true"
|
|
aria-label="Options"
|
|
class="mx_AccessibleButton mx_AppTileMenuBar_iconButton mx_AppTileMenuBar_iconButton--menu"
|
|
role="button"
|
|
tabindex="0"
|
|
title="Options"
|
|
/>
|
|
</span>
|
|
</div>
|
|
<div
|
|
class="mx_AppTile_persistedWrapper"
|
|
>
|
|
<div />
|
|
</div>
|
|
</div>
|
|
</DocumentFragment>
|
|
`;
|