(expected: any[])
| 788 | // Convert test suite expected inner list [[items...], params] to InnerList |
| 789 | // deno-lint-ignore no-explicit-any |
| 790 | function convertExpectedInnerList(expected: any[]): InnerList { |
| 791 | const [items, params] = expected; |
| 792 | return { |
| 793 | items: items.map(convertExpectedItem), |
| 794 | parameters: convertExpectedParams(params), |
| 795 | }; |
| 796 | } |
| 797 | |
| 798 | // Check if expected value represents an inner list |
| 799 | // deno-lint-ignore no-explicit-any |
no test coverage detected