(id: string, metadataId: string)
| 16 | import type { SerializedBlock, SerializedWorkflow } from '@/serializer/types' |
| 17 | |
| 18 | function createBlock(id: string, metadataId: string): SerializedBlock { |
| 19 | return { |
| 20 | id, |
| 21 | position: { x: 0, y: 0 }, |
| 22 | config: { tool: 'noop', params: {} }, |
| 23 | inputs: {}, |
| 24 | outputs: {}, |
| 25 | metadata: { id: metadataId, name: id }, |
| 26 | enabled: true, |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | describe('Nested parallel expansion + edge resolution', () => { |
| 31 | it('waits for every branch terminal before queuing the parallel end sentinel', () => { |
no outgoing calls
no test coverage detected