You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
716 B
24 lines
716 B
7 years ago
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||
|
|
||
|
exports[`Slider should show tooltip when hovering slider handler 1`] = `
|
||
|
<div>
|
||
|
<div class="ant-tooltip ant-tooltip-placement-top" style="left: -999px; top: -1003px;">
|
||
|
<div class="ant-tooltip-content">
|
||
|
<div class="ant-tooltip-arrow"></div>
|
||
|
<div class="ant-tooltip-inner">30</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
`;
|
||
|
|
||
|
exports[`Slider should show tooltip when hovering slider handler 2`] = `
|
||
|
<div>
|
||
|
<div class="ant-tooltip ant-tooltip-placement-top" style="display: none; left: -999px; top: -1003px;">
|
||
|
<div class="ant-tooltip-content">
|
||
|
<div class="ant-tooltip-arrow"></div>
|
||
|
<div class="ant-tooltip-inner">30</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
`;
|