mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 10:15:43 +03:00
f2ec465f87
* add floating own live sharing eacon status to maximised view Signed-off-by: Kerry Archibald <kerrya@element.io> * add tests for own beacon status Signed-off-by: Kerry Archibald <kerrya@element.io> * stylelint Signed-off-by: Kerry Archibald <kerrya@element.io> * remove huge snapshot Signed-off-by: Kerry Archibald <kerrya@element.io> * remove unused emits from test Signed-off-by: Kerry Archibald <kerrya@element.io>
25 lines
548 B
Text
25 lines
548 B
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`<OwnBeaconStatus /> renders without a beacon instance 1`] = `
|
|
<OwnBeaconStatus
|
|
displayStatus="Loading"
|
|
>
|
|
<BeaconStatus
|
|
displayLiveTimeRemaining={true}
|
|
displayStatus="Loading"
|
|
label="Live location enabled"
|
|
>
|
|
<div
|
|
className="mx_BeaconStatus mx_BeaconStatus_Loading"
|
|
>
|
|
<div
|
|
className="mx_BeaconStatus_description"
|
|
>
|
|
<span>
|
|
Loading live location...
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</BeaconStatus>
|
|
</OwnBeaconStatus>
|
|
`;
|