(p: RichParameter)
| 135 | // It helps to avoid cross-test interference when user-auto-fill triggers on |
| 136 | // the same parameter name. |
| 137 | export const randParamName = (p: RichParameter): RichParameter => { |
| 138 | const name = `${p.name}_${Math.random().toString(36).substring(7)}`; |
| 139 | return { ...p, name: name }; |
| 140 | }; |
| 141 | |
| 142 | // Build options |
| 143 |
no outgoing calls
no test coverage detected