(params: any[])
| 768 | // Convert test suite expected params array to Map |
| 769 | // deno-lint-ignore no-explicit-any |
| 770 | function convertExpectedParams(params: any[]): Map<string, BareItem> { |
| 771 | const map = new Map<string, BareItem>(); |
| 772 | for (const [key, value] of params) { |
| 773 | map.set(key, convertExpectedBareItem(value)); |
| 774 | } |
| 775 | return map; |
| 776 | } |
| 777 | |
| 778 | // Convert test suite expected item [bareItem, params] to Item |
| 779 | // deno-lint-ignore no-explicit-any |
no test coverage detected