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.
 
 

33 lines
692 B

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Tooltip should hide when mouse leave antd disabled component Button 1`] = `
<span
style="display: inline-block; cursor: not-allowed;"
>
<button
class="ant-btn"
disabled=""
style="pointer-events: none;"
type="button"
/>
</span>
`;
exports[`Tooltip should hide when mouse leave antd disabled component Switch 1`] = `
<span
style="display: inline-block; cursor: not-allowed;"
>
<button
aria-checked="false"
class="ant-switch ant-switch-disabled"
disabled=""
role="switch"
style="pointer-events: none;"
type="button"
>
<span
class="ant-switch-inner"
/>
</button>
</span>
`;