mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
21 lines
403 B
TypeScript
21 lines
403 B
TypeScript
import * as React from 'react';
|
|
|
|
import demoTest, { rootPropsTest } from '../../../tests/shared/demoTest';
|
|
|
|
demoTest('tooltip', {
|
|
testRootProps: false,
|
|
skip: ['shift.tsx', 'debug.tsx'],
|
|
});
|
|
|
|
rootPropsTest(
|
|
'tooltip',
|
|
(Tooltip, props) => (
|
|
<Tooltip {...props} title="Bamboo">
|
|
<span />
|
|
</Tooltip>
|
|
),
|
|
{
|
|
findRootElements: () => document.querySelector('.ant-tooltip')!,
|
|
},
|
|
);
|