(client: Client)
| 183 | (result.content as Array<{ type: string; text: string }>)[0].text; |
| 184 | |
| 185 | const toolNames = async (client: Client): Promise<string[]> => |
| 186 | (await client.listTools()).tools.map((tool) => tool.name); |
| 187 | |
| 188 | const COUNTER_CODE = "function App() { return <div>hi</div>; }"; |
| 189 | const UPDATED_CODE = "function App() { return <div>hi again</div>; }"; |
no outgoing calls
no test coverage detected