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.
49 lines
833 B
49 lines
833 B
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Dropdown overlay is function and has custom transitionName 1`] = `
|
|
Array [
|
|
<button
|
|
class="ant-dropdown-trigger"
|
|
type="button"
|
|
>
|
|
button
|
|
</button>,
|
|
<div>
|
|
<div
|
|
class="ant-dropdown"
|
|
style="opacity:0;pointer-events:none"
|
|
>
|
|
<div>
|
|
menu
|
|
</div>
|
|
</div>
|
|
</div>,
|
|
]
|
|
`;
|
|
|
|
exports[`Dropdown overlay is string 1`] = `
|
|
Array [
|
|
<button
|
|
class="ant-dropdown-trigger"
|
|
type="button"
|
|
>
|
|
button
|
|
</button>,
|
|
<div>
|
|
<div
|
|
class="ant-dropdown"
|
|
style="opacity:0;pointer-events:none"
|
|
>
|
|
<span>
|
|
string
|
|
</span>
|
|
</div>
|
|
</div>,
|
|
]
|
|
`;
|
|
|
|
exports[`Dropdown rtl render component should be rendered correctly in RTL direction 1`] = `
|
|
<span
|
|
class="ant-dropdown-trigger ant-dropdown-rtl"
|
|
/>
|
|
`;
|
|
|