(command: string, disabled = false)
| 41 | } |
| 42 | |
| 43 | function stdioConfig(command: string, disabled = false) { |
| 44 | return { transport: "stdio" as const, command, disabled }; |
| 45 | } |
| 46 | |
| 47 | function testTool(result: unknown = { ok: true }): Tool { |
| 48 | return { execute: mock(() => Promise.resolve(result)) } as unknown as Tool; |
no outgoing calls
no test coverage detected