claude-flow
Version:
Ruflo - Enterprise AI agent orchestration for Claude Code. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration
30 lines (27 loc) • 570 B
text/typescript
/**
* @claude-flow/testing - Mocks Index
*
* Central export for all mock implementations
*/
// Mock services
export {
MockAgentDB,
MockSwarmCoordinator,
MockSwarmAgent,
MockMemoryService,
MockEventBus,
MockSecurityService,
createMockServices,
resetMockServices,
type MockServiceBundle,
} from './mock-services.js';
// Mock MCP client and server
export {
MockMCPClient,
MockMCPServer,
MockMCPConnection,
MCPClientError,
createStandardMockMCPClient,
createFailingMockMCPClient,
createSlowMockMCPClient,
} from './mock-mcp-client.js';