(nodes: SnapshotNode[], ref: string)
| 145 | } |
| 146 | |
| 147 | export function findNodeByRef(nodes: SnapshotNode[], ref: string): SnapshotNode | null { |
| 148 | return nodes.find((node) => node.ref === ref) ?? null; |
| 149 | } |
| 150 | |
| 151 | export function buildSnapshotPresentationKey(flags: SnapshotOptions | undefined): string { |
| 152 | return JSON.stringify({ |
no outgoing calls
no test coverage detected
searching dependent graphs…