(edges: any[], src: string, tgt: string)
| 48 | return edges; |
| 49 | }; |
| 50 | const has = (edges: any[], src: string, tgt: string) => edges.some((e) => e.src === src && e.tgt === tgt); |
| 51 | |
| 52 | it('bridges a {name, fn} command table dispatched through p->fn() (the git shape)', async () => { |
| 53 | write('cmd.c', ` |
no outgoing calls
no test coverage detected