(props?: Partial<SelectProps>)
| 119 | |
| 120 | describe('input value', () => { |
| 121 | const createSelect = (props?: Partial<SelectProps>) => ( |
| 122 | <Select mode="combobox" {...props}> |
| 123 | <Option value="1">One</Option> |
| 124 | <Option value="2">Two</Option> |
| 125 | </Select> |
| 126 | ); |
| 127 | |
| 128 | it('displays correct input value for defaultValue', () => { |
| 129 | const { container } = render( |
no outgoing calls
no test coverage detected
searching dependent graphs…