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