mirror of
https://github.com/vector-im/element-call.git
synced 2026-08-08 20:09:19 +00:00
62 lines
1.0 KiB
Plaintext
62 lines
1.0 KiB
Plaintext
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`RaisedHandIndicator > renders a smaller indicator when miniature is specified 1`] = `
|
|
<div
|
|
class="reactionIndicatorWidget"
|
|
>
|
|
<div
|
|
class="reaction"
|
|
>
|
|
<span
|
|
aria-label="Reaction"
|
|
role="img"
|
|
>
|
|
✋
|
|
</span>
|
|
</div>
|
|
<p>
|
|
00:01
|
|
</p>
|
|
</div>
|
|
`;
|
|
|
|
exports[`RaisedHandIndicator > renders an indicator when a hand has been raised 1`] = `
|
|
<div
|
|
class="reactionIndicatorWidget reactionIndicatorWidgetLarge"
|
|
>
|
|
<div
|
|
class="reaction reactionLarge"
|
|
>
|
|
<span
|
|
aria-label="Reaction"
|
|
role="img"
|
|
>
|
|
✋
|
|
</span>
|
|
</div>
|
|
<p>
|
|
00:01
|
|
</p>
|
|
</div>
|
|
`;
|
|
|
|
exports[`RaisedHandIndicator > renders an indicator when a hand has been raised with the expected time 1`] = `
|
|
<div
|
|
class="reactionIndicatorWidget reactionIndicatorWidgetLarge"
|
|
>
|
|
<div
|
|
class="reaction reactionLarge"
|
|
>
|
|
<span
|
|
aria-label="Reaction"
|
|
role="img"
|
|
>
|
|
✋
|
|
</span>
|
|
</div>
|
|
<p>
|
|
01:01
|
|
</p>
|
|
</div>
|
|
`;
|