(response: any)
| 29 | |
| 30 | // Helper function to parse tool response |
| 31 | const parseToolResponse = (response: any) => { |
| 32 | return JSON.parse(response.content[0].text); |
| 33 | }; |
| 34 | |
| 35 | describe('execute-sql tool', () => { |
| 36 | let mockConnector: Connector; |
no test coverage detected