mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-26 02:18:25 +08:00
e5fedfcd74
* add expandable device details to session list * test device expansion in filtered list * test expanded device id management from sessionmanager tab * i18n * update snapshot * update snapshots * use css instead of br
36 lines
909 B
Plaintext
36 lines
909 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`<DeviceExpandDetailsButton /> renders when expanded 1`] = `
|
|
Object {
|
|
"container": <div>
|
|
<div
|
|
aria-label="Toggle device details"
|
|
class="mx_AccessibleButton mx_DeviceExpandDetailsButton mx_DeviceExpandDetailsButton_expanded mx_AccessibleButton_hasKind mx_AccessibleButton_kind_icon"
|
|
role="button"
|
|
tabindex="0"
|
|
>
|
|
<div
|
|
class="mx_DeviceExpandDetailsButton_icon"
|
|
/>
|
|
</div>
|
|
</div>,
|
|
}
|
|
`;
|
|
|
|
exports[`<DeviceExpandDetailsButton /> renders when not expanded 1`] = `
|
|
Object {
|
|
"container": <div>
|
|
<div
|
|
aria-label="Toggle device details"
|
|
class="mx_AccessibleButton mx_DeviceExpandDetailsButton mx_AccessibleButton_hasKind mx_AccessibleButton_kind_icon"
|
|
role="button"
|
|
tabindex="0"
|
|
>
|
|
<div
|
|
class="mx_DeviceExpandDetailsButton_icon"
|
|
/>
|
|
</div>
|
|
</div>,
|
|
}
|
|
`;
|