(options: Element[])
| 234 | } |
| 235 | |
| 236 | function buildStringifiedOptions(options: Element[]): string { |
| 237 | if (options.length === 0) return "<No options>"; |
| 238 | return options.map((el) => `'${el.textContent}'`).join(", "); |
| 239 | } |
| 240 | |
| 241 | /** |
| 242 | * Select a react-select option. |
no test coverage detected