(config: MCPConfig)
| 10 | |
| 11 | // Helper to safely access stdio config properties |
| 12 | function isStdioConfig(config: MCPConfig): config is MCPConfig & { command: string; env?: Record<string, string> } { |
| 13 | return 'command' in config |
| 14 | } |
| 15 | |
| 16 | describe('mcpFileSchema', () => { |
| 17 | it('should parse a valid mcp.json with stdio config', () => { |
no outgoing calls
no test coverage detected