(client: Client)
| 190 | }; |
| 191 | |
| 192 | const toolNames = async (client: Client): Promise<string[]> => |
| 193 | (await client.listTools()).tools.map((tool) => tool.name); |
| 194 | |
| 195 | const COUNTER_CODE = "function App() { return <div>hi</div>; }"; |
| 196 | const UPDATED_CODE = "function App() { return <div>hi again</div>; }"; |
no outgoing calls
no test coverage detected