* Generates an edge ID from source and target.
(source: string, target: string)
| 19 | * Generates an edge ID from source and target. |
| 20 | */ |
| 21 | function generateEdgeId(source: string, target: string): string { |
| 22 | return `${source}-${target}-${generateRandomString(4)}` |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * Creates a mock edge connecting two blocks. |
no test coverage detected