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
33 lines
827 B
Text
33 lines
827 B
Text
// 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>,
|
|
}
|
|
`;
|