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.

19 lines
361 B

import 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')!,
},
);