(connection: any, edges: any[])
| 72 | |
| 73 | // Edge utilities |
| 74 | export const addEdge = (connection: any, edges: any[]) => [...edges, connection] |
| 75 | |
| 76 | export const getBezierPath = jest.fn(({ sourceX, sourceY, targetX, targetY }: any) => [ |
| 77 | `M ${sourceX},${sourceY} L ${targetX},${targetY}`, |
no outgoing calls
no test coverage detected