mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-29 14:00:48 +08:00
94 lines
2.1 KiB
Plaintext
94 lines
2.1 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`VoiceBroadcastHeader when rendering a live broadcast header with broadcast info should render the header with a live badge 1`] = `
|
|
<div>
|
|
<div
|
|
class="mx_VoiceBroadcastHeader"
|
|
>
|
|
<div
|
|
data-testid="room-avatar"
|
|
>
|
|
room avatar:
|
|
!room:example.com
|
|
</div>
|
|
<div
|
|
class="mx_VoiceBroadcastHeader_content"
|
|
>
|
|
<div
|
|
class="mx_VoiceBroadcastHeader_room"
|
|
>
|
|
!room:example.com
|
|
</div>
|
|
<div
|
|
class="mx_VoiceBroadcastHeader_line"
|
|
>
|
|
<i
|
|
aria-hidden="true"
|
|
class="mx_Icon mx_Icon_16 mx_Icon_compound-secondary-content"
|
|
role="presentation"
|
|
style="mask-image: url(\\"image-file-stub\\");"
|
|
/>
|
|
test user
|
|
</div>
|
|
<div
|
|
class="mx_VoiceBroadcastHeader_line"
|
|
>
|
|
<i
|
|
aria-hidden="true"
|
|
class="mx_Icon mx_Icon_16 mx_Icon_compound-secondary-content"
|
|
role="presentation"
|
|
style="mask-image: url(\\"image-file-stub\\");"
|
|
/>
|
|
Voice broadcast
|
|
</div>
|
|
</div>
|
|
<div
|
|
class="mx_LiveBadge"
|
|
>
|
|
<i
|
|
aria-hidden="true"
|
|
class="mx_Icon mx_Icon_16 mx_Icon_live-badge"
|
|
role="presentation"
|
|
style="mask-image: url(\\"image-file-stub\\");"
|
|
/>
|
|
Live
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
exports[`VoiceBroadcastHeader when rendering a non-live broadcast header should render the header without a live badge 1`] = `
|
|
<div>
|
|
<div
|
|
class="mx_VoiceBroadcastHeader"
|
|
>
|
|
<div
|
|
data-testid="room-avatar"
|
|
>
|
|
room avatar:
|
|
!room:example.com
|
|
</div>
|
|
<div
|
|
class="mx_VoiceBroadcastHeader_content"
|
|
>
|
|
<div
|
|
class="mx_VoiceBroadcastHeader_room"
|
|
>
|
|
!room:example.com
|
|
</div>
|
|
<div
|
|
class="mx_VoiceBroadcastHeader_line"
|
|
>
|
|
<i
|
|
aria-hidden="true"
|
|
class="mx_Icon mx_Icon_16 mx_Icon_compound-secondary-content"
|
|
role="presentation"
|
|
style="mask-image: url(\\"image-file-stub\\");"
|
|
/>
|
|
test user
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|