(overrides?: Partial<ServerState>)
| 104 | }) |
| 105 | |
| 106 | const createServerState = (overrides?: Partial<ServerState>): ServerState => ({ |
| 107 | id: 'server-1', |
| 108 | url: 'https://api.example.com/mcp', |
| 109 | connectionStatus: 'connected', |
| 110 | ...overrides, |
| 111 | }) |
| 112 | |
| 113 | const createDiscoveredTool = (overrides?: Partial<DiscoveredTool>): DiscoveredTool => ({ |
| 114 | serverId: 'server-1', |
no outgoing calls
no test coverage detected