The dispatcher's "queued marker" pre-stamp: pending with no executionId.
(workflowId: string)
| 48 | |
| 49 | /** The dispatcher's "queued marker" pre-stamp: pending with no executionId. */ |
| 50 | function queuedMarker(workflowId: string): RowExecutionMetadata { |
| 51 | return { status: 'pending', executionId: null, jobId: null, workflowId, error: null } |
| 52 | } |
| 53 | |
| 54 | describe('pickNextEligibleGroupForRow — queued-marker handoff', () => { |
| 55 | it('runs an autoRun:false group that carries a queued marker (explicit request)', () => { |
no outgoing calls
no test coverage detected