(overrides: Record<string, unknown> = {})
| 88 | |
| 89 | /** Minimal ChatFlow-like object of AGENTFLOW type */ |
| 90 | const makeChatFlow = (overrides: Record<string, unknown> = {}) => ({ |
| 91 | id: 'flow-1', |
| 92 | type: 'AGENTFLOW', |
| 93 | workspaceId: 'ws-1', |
| 94 | ...overrides |
| 95 | }) |
| 96 | |
| 97 | // ─── Test fixture setup ─────────────────────────────────────────────────────── |
| 98 |
no outgoing calls
no test coverage detected