(subBlocks: SubBlockConfig[])
| 31 | import type { WorkflowState } from '@/stores/workflows/workflow/types' |
| 32 | |
| 33 | const blockWith = (subBlocks: SubBlockConfig[]): BlockConfig => |
| 34 | ({ name: 'Test', description: '', subBlocks, outputs: {} }) as unknown as BlockConfig |
| 35 | |
| 36 | // No persisted block map, so the resolver derives - matching the deriveForkBlockId expectations. |
| 37 | const resolveBlockId = buildForkBlockIdResolver(true, EMPTY_FORK_BLOCK_MAP) |