mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 15:19:58 +08:00
12 lines
355 B
TypeScript
12 lines
355 B
TypeScript
|
import * as React from 'react';
|
||
|
import demoTest, { rootPropsTest } from '../../../tests/shared/demoTest';
|
||
|
|
||
|
demoTest('tree-select', {
|
||
|
testRootProps: false,
|
||
|
});
|
||
|
|
||
|
rootPropsTest('tree-select', (TreeSelect, props) => <TreeSelect {...props} />, {
|
||
|
findRootElements: () => document.querySelectorAll('.ant-select, .ant-select-dropdown'),
|
||
|
expectCount: 2,
|
||
|
});
|