(suffixIcon?: React.ReactNode)
| 361 | |
| 362 | it('show arrow on multiple mode when explicitly set', () => { |
| 363 | const renderDemo = (suffixIcon?: React.ReactNode) => ( |
| 364 | <Select mode="multiple" value={['']} suffixIcon={suffixIcon}> |
| 365 | <Option value={1}>1</Option> |
| 366 | <Option value={2}>2</Option> |
| 367 | </Select> |
| 368 | ); |
| 369 | const { container, rerender } = render(renderDemo()); |
| 370 | |
| 371 | expect(container.querySelector('.rc-select-arrow')).toBeFalsy(); |
no outgoing calls
no test coverage detected
searching dependent graphs…