ant-design/components/tooltip/__tests__/__snapshots__/tooltip.test.tsx.snap
lijianan c34caad24c
test: js => ts (#37392)
* test: js => ts

* test: add test

* fix: fix eslint error

* test: add test case

* fix: fix test error

* fix: fix eslint error

* fix: fix eslint error

* fix: eslint error fix

* fix: fallback eslint config & add test case

* test: add all test case

* fix: bugfix

* fix: bugFix

* fix: bugFix

* fix: bugFix

* fix: lint

* fix: add React.createRef

* fix: add breadcrumbName in Routes

* fix: any commit for restart ci/cd

* fix: remove type

* fix: test fix

* fix: test fix

* fix: add ts-ignore for id

* test: add Icon test case

* test: remove ts-ignore

* test: add Icon test case
2022-09-05 19:41:32 +08:00

41 lines
959 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Tooltip rtl render component should be rendered correctly in RTL direction 1`] = `<span />`;
exports[`Tooltip should hide when mouse leave antd disabled component Button 1`] = `
<span
class="ant-tooltip-disabled-compatible-wrapper"
style="display: inline-block; cursor: not-allowed;"
>
<button
class="ant-btn ant-btn-default"
disabled=""
style="pointer-events: none;"
type="button"
/>
</span>
`;
exports[`Tooltip should hide when mouse leave antd disabled component Switch 1`] = `
<span
class="ant-tooltip-disabled-compatible-wrapper"
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"
>
<div
class="ant-switch-handle"
/>
<span
class="ant-switch-inner"
/>
</button>
</span>
`;