ant-design/components/dropdown/__tests__/demo.test.tsx
lijianan ea8ed28209
chore: unified import method (#42149)
* chore: unified import method

* fix lint
2023-05-05 20:52:44 +08:00

36 lines
642 B
TypeScript

import React from 'react';
import demoTest, { rootPropsTest } from '../../../tests/shared/demoTest';
demoTest('dropdown', {
testRootProps: false,
});
rootPropsTest(
'dropdown',
(Dropdown, props) => (
<Dropdown
{...props}
menu={{
openKeys: ['1'],
items: [
{
key: '1',
label: 'parent',
children: [
{
key: '2',
label: 'child',
},
],
},
],
}}
>
<a />
</Dropdown>
),
{
findRootElements: () => document.querySelector('.ant-dropdown')!,
},
);