Files
ThreadNet-Web/test/components/views/beacon/__snapshots__/LeftPanelLiveShareWarning-test.tsx.snap
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1.1 KiB
Plaintext
Raw Normal View History

2022-03-17 09:25:57 +01:00
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`<LeftPanelLiveShareWarning /> when user has live location monitor renders correctly when minimized 1`] = `
<DocumentFragment>
<div
2024-04-24 14:24:25 +02:00
aria-label="You are sharing your live location"
class="mx_AccessibleButton mx_LeftPanelLiveShareWarning mx_LeftPanelLiveShareWarning__minimized"
role="button"
tabindex="0"
2022-03-17 09:25:57 +01:00
>
<div
height="10"
/>
</div>
</DocumentFragment>
2022-03-17 09:25:57 +01:00
`;
exports[`<LeftPanelLiveShareWarning /> when user has live location monitor renders correctly when not minimized 1`] = `
<DocumentFragment>
<div
class="mx_AccessibleButton mx_LeftPanelLiveShareWarning"
role="button"
tabindex="0"
2022-03-17 09:25:57 +01:00
>
You are sharing your live location
</div>
</DocumentFragment>
`;
2022-04-25 14:44:18 +02:00
exports[`<LeftPanelLiveShareWarning /> when user has live location monitor renders location publish error 1`] = `
<DocumentFragment>
<div
class="mx_AccessibleButton mx_LeftPanelLiveShareWarning mx_LeftPanelLiveShareWarning__error"
role="button"
tabindex="0"
>
An error occurred whilst sharing your live location
</div>
</DocumentFragment>
2022-03-17 09:25:57 +01:00
`;