ant-design/components/popconfirm/__tests__/demo.test.tsx
2023-05-06 15:49:37 +08:00

19 lines
366 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')!,
},
);