ant-design/components/select/__tests__/demo.test.tsx
lijianan ea8ed28209
chore: unified import method (#42149)
* chore: unified import method

* fix lint
2023-05-05 20:52:44 +08:00

13 lines
362 B
TypeScript

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