mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-26 02:18:25 +08:00
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>,
|
||
|
}
|
||
|
`;
|