(workflow: any, expectedCount: number)
| 106 | * ``` |
| 107 | */ |
| 108 | export function expectEdgeCount(workflow: any, expectedCount: number): void { |
| 109 | expect(workflow.edges.length, `Workflow should have ${expectedCount} edges`).toBe(expectedCount) |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * Asserts that a block is at a specific position. |