()
| 597 | ]; |
| 598 | |
| 599 | export const getDocShotMap = (): Map<string, DocShot> => { |
| 600 | const shots = new Map<string, DocShot>(); |
| 601 | DOC_SHOTS.forEach((shot) => { |
| 602 | if (shots.has(shot.asset)) { |
| 603 | throw new Error(`Duplicate doc shot asset: ${shot.asset}`); |
| 604 | } |
| 605 | shots.set(shot.asset, shot); |
| 606 | }); |
| 607 | return shots; |
| 608 | }; |
no outgoing calls
no test coverage detected
searching dependent graphs…