(index: number, functionName: string, argument: any)
| 138 | } |
| 139 | |
| 140 | protected isChibiJson(index: number, functionName: string, argument: any) { |
| 141 | return ( |
| 142 | Array.isArray(argument) && |
| 143 | argument.length > 0 && |
| 144 | Array.isArray(argument[0]) && |
| 145 | argument[0].length > 0 && |
| 146 | chibiParamIndices[functionName] && |
| 147 | chibiParamIndices[functionName].includes(index + 2) // +2 to account for ctx and input arguments |
| 148 | ); |
| 149 | } |
| 150 | |
| 151 | logError(error, functionName, input, args) { |
| 152 | console.log( |
no outgoing calls
no test coverage detected