ant-design/components/popconfirm/__tests__/demo.test.tsx
叶枫 502dac12aa
docs: format code (#48309)
* docs: fix code

* feat: lint

* feat: prettier

* feat: test

* feat: review

* feat: format html

* feat: format html
2024-04-08 14:04:08 +08:00

20 lines
367 B
TypeScript

import * as React from 'react';
import demoTest, { rootPropsTest } from '../../../tests/shared/demoTest';
demoTest('popconfirm', {
testRootProps: false,
});
rootPropsTest(
'popconfirm',
(Popconfirm, props) => (
<Popconfirm {...props}>
<span />
</Popconfirm>
),
{
findRootElements: () => document.querySelector('.ant-popover')!,
},
);