mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-25 18:08:14 +08:00
0dffc582e7
* split current device section into component * add dropdown button for currentsession device details * test currentdevicesection * remove unnecc beforeEach * update type imports * i18n and lint
34 lines
827 B
Plaintext
34 lines
827 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`<DeviceExpandDetailsButton /> renders when expanded 1`] = `
|
|
Object {
|
|
"container": <div>
|
|
<div
|
|
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
|
|
class="mx_AccessibleButton mx_DeviceExpandDetailsButton mx_AccessibleButton_hasKind mx_AccessibleButton_kind_icon"
|
|
role="button"
|
|
tabindex="0"
|
|
>
|
|
<div
|
|
class="mx_DeviceExpandDetailsButton_icon"
|
|
/>
|
|
</div>
|
|
</div>,
|
|
}
|
|
`;
|