mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 15:49:10 +08:00
ac5a06027e
This reverts commit ea8ed28209
.
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,
|
|
});
|