mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-03 04:30:06 +08:00
ac5a06027e
This reverts commit ea8ed28209
.
13 lines
367 B
TypeScript
13 lines
367 B
TypeScript
import * as React from 'react';
|
|
import demoTest, { rootPropsTest } from '../../../tests/shared/demoTest';
|
|
|
|
demoTest('select', {
|
|
skip: ['render-panel.tsx'],
|
|
testRootProps: false,
|
|
});
|
|
|
|
rootPropsTest('select', (Select, props) => <Select {...props} />, {
|
|
findRootElements: () => document.querySelectorAll('.ant-select, .ant-select-dropdown'),
|
|
expectCount: 2,
|
|
});
|