mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-12 02:15:28 +03:00
30 lines
540 B
Text
30 lines
540 B
Text
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||
|
|
||
|
exports[`<TooltipTarget /> displays tooltip on mouseover 1`] = `
|
||
|
<div
|
||
|
class="mx_Tooltip test tooltipClassName mx_Tooltip_visible"
|
||
|
style="right: 1008px; top: -26px; display: block;"
|
||
|
>
|
||
|
<div
|
||
|
class="mx_Tooltip_chevron"
|
||
|
/>
|
||
|
test label
|
||
|
</div>
|
||
|
`;
|
||
|
|
||
|
exports[`<TooltipTarget /> renders container 1`] = `
|
||
|
<div
|
||
|
aria-describedby="test id"
|
||
|
class="test tooltipTargetClassName"
|
||
|
data-test-id="test"
|
||
|
tabindex="0"
|
||
|
>
|
||
|
<span>
|
||
|
child
|
||
|
</span>
|
||
|
<div
|
||
|
class="test className"
|
||
|
/>
|
||
|
</div>
|
||
|
`;
|