( result: ToolResponse | MockToolHandlerResult, )
| 175 | } |
| 176 | |
| 177 | function isMockToolHandlerResult( |
| 178 | result: ToolResponse | MockToolHandlerResult, |
| 179 | ): result is MockToolHandlerResult { |
| 180 | return 'events' in result && Array.isArray(result.events) && typeof result.text === 'function'; |
| 181 | } |
| 182 | |
| 183 | export function expectPendingBuildResponse( |
| 184 | result: ToolResponse | MockToolHandlerResult, |
no outgoing calls
no test coverage detected