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