mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-24 17:38:40 +08: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>
26 lines
548 B
Plaintext
26 lines
548 B
Plaintext
// 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>
|
|
`;
|