mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-28 19:38:48 +08:00
72 lines
1.6 KiB
Plaintext
72 lines
1.6 KiB
Plaintext
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||
|
|
||
|
exports[`<ZoomButtons /> renders buttons 1`] = `
|
||
|
<ZoomButtons
|
||
|
map={
|
||
|
MockMap {
|
||
|
"_events": Object {},
|
||
|
"_eventsCount": 0,
|
||
|
"_maxListeners": undefined,
|
||
|
"addControl": [MockFunction],
|
||
|
"removeControl": [MockFunction],
|
||
|
"zoomIn": [MockFunction],
|
||
|
"zoomOut": [MockFunction],
|
||
|
Symbol(kCapture): false,
|
||
|
}
|
||
|
}
|
||
|
>
|
||
|
<div
|
||
|
className="mx_ZoomButtons"
|
||
|
>
|
||
|
<AccessibleButton
|
||
|
className="mx_ZoomButtons_button"
|
||
|
data-test-id="map-zoom-in-button"
|
||
|
element="div"
|
||
|
onClick={[Function]}
|
||
|
role="button"
|
||
|
tabIndex={0}
|
||
|
title="Zoom in"
|
||
|
>
|
||
|
<div
|
||
|
className="mx_AccessibleButton mx_ZoomButtons_button"
|
||
|
data-test-id="map-zoom-in-button"
|
||
|
onClick={[Function]}
|
||
|
onKeyDown={[Function]}
|
||
|
onKeyUp={[Function]}
|
||
|
role="button"
|
||
|
tabIndex={0}
|
||
|
title="Zoom in"
|
||
|
>
|
||
|
<div
|
||
|
className="mx_ZoomButtons_icon"
|
||
|
/>
|
||
|
</div>
|
||
|
</AccessibleButton>
|
||
|
<AccessibleButton
|
||
|
className="mx_ZoomButtons_button"
|
||
|
data-test-id="map-zoom-out-button"
|
||
|
element="div"
|
||
|
onClick={[Function]}
|
||
|
role="button"
|
||
|
tabIndex={0}
|
||
|
title="Zoom out"
|
||
|
>
|
||
|
<div
|
||
|
className="mx_AccessibleButton mx_ZoomButtons_button"
|
||
|
data-test-id="map-zoom-out-button"
|
||
|
onClick={[Function]}
|
||
|
onKeyDown={[Function]}
|
||
|
onKeyUp={[Function]}
|
||
|
role="button"
|
||
|
tabIndex={0}
|
||
|
title="Zoom out"
|
||
|
>
|
||
|
<div
|
||
|
className="mx_ZoomButtons_icon"
|
||
|
/>
|
||
|
</div>
|
||
|
</AccessibleButton>
|
||
|
</div>
|
||
|
</ZoomButtons>
|
||
|
`;
|