(arr)
| 370 | } |
| 371 | |
| 372 | function paramsToObjectUnWithEnable(arr) { |
| 373 | const obj = {}; |
| 374 | safeArray(arr).forEach(item => { |
| 375 | if (item && item.name) { |
| 376 | obj[item.name] = handleValue(item.value, currDomain.global); |
| 377 | if (requestParams) { |
| 378 | requestParams[item.name] = obj[item.name]; |
| 379 | } |
| 380 | } |
| 381 | }); |
| 382 | return obj; |
| 383 | } |
| 384 | |
| 385 | let { case_env, path, env, _id } = interfaceRunData; |
| 386 | let currDomain, |
no test coverage detected