(result: unknown = { ok: true })
| 45 | } |
| 46 | |
| 47 | function testTool(result: unknown = { ok: true }): Tool { |
| 48 | return { execute: mock(() => Promise.resolve(result)) } as unknown as Tool; |
| 49 | } |
| 50 | |
| 51 | function testInstance( |
| 52 | name: string, |
no test coverage detected