()
| 53 | import type { McpClientOptions, McpServerConfig } from './types' |
| 54 | |
| 55 | function createConfig(): McpServerConfig { |
| 56 | return { |
| 57 | id: 'server-1', |
| 58 | name: 'Test Server', |
| 59 | transport: 'streamable-http', |
| 60 | url: 'https://test.example.com/mcp', |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | describe('McpClient notification handler', () => { |
| 65 | beforeEach(() => { |