mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-03 20:49:14 +08:00
1fc374495f
* chore: init test * test: rootClassName inject * test: part of test * chore: patch qrcode rootCls * chore: part rootClassName * chore: part rootClassName * test: more test * test: more test * test: more test * chore: part rootClassName * chore: part rootClassName * chore: part rootClassName * test: more test * chore: part rootClassName * chore: part rootClassName * chore: part rootClassName * chore: part rootClassName * chore: part rootClassName * chore: part rootClassName * chore: part rootClassName * chore: part rootClassName * chore: part rootClassName * chore: part rootClassName * chore: part rootClassName * chore: part rootClassName * chore: part rootClassName * chore: part rootClassName * chore: part rootClassName * chore: part rootClassName * chore: part rootClassName * chore: part rootClassName * chore: part rootClassName * chore: part rootClassName * chore: part rootClassName * chore: fix lint * chore: fix lint * chore: ignore part of lint * test: update snapshot * test: fix test case * chore: fix node test * chore: adjust render logic * fix: test * test: update snapshot * test: update * refactor * chore: fix require module logic
36 lines
702 B
TypeScript
36 lines
702 B
TypeScript
import * as React from 'react';
|
|
import demoTest, { rootPropsTest } from '../../../tests/shared/demoTest';
|
|
|
|
demoTest('menu', { testRootProps: false });
|
|
|
|
rootPropsTest(
|
|
'menu',
|
|
(Menu, props) => (
|
|
<Menu
|
|
{...props}
|
|
mode="vertical"
|
|
openKeys={['lbl2']}
|
|
items={[
|
|
{
|
|
label: 'Label 1',
|
|
key: 'lbl1',
|
|
},
|
|
{
|
|
label: 'Label 2',
|
|
key: 'lbl2',
|
|
children: [
|
|
{
|
|
label: 'Label 3',
|
|
key: 'lbl3',
|
|
},
|
|
],
|
|
},
|
|
]}
|
|
/>
|
|
),
|
|
{
|
|
findRootElements: (container) =>
|
|
container.querySelectorAll('.ant-menu-root, .ant-menu-submenu-popup'),
|
|
},
|
|
);
|