({
id,
label,
priority,
goal,
why,
signals,
evidenceSources,
starterPack,
})
| 6 | } |
| 7 | |
| 8 | function createToolset({ |
| 9 | id, |
| 10 | label, |
| 11 | priority, |
| 12 | goal, |
| 13 | why, |
| 14 | signals, |
| 15 | evidenceSources, |
| 16 | starterPack, |
| 17 | }) { |
| 18 | return { |
| 19 | id, |
| 20 | label, |
| 21 | priority, |
| 22 | goal, |
| 23 | why, |
| 24 | signals, |
| 25 | evidenceSources, |
| 26 | starterPack, |
| 27 | }; |
| 28 | } |
| 29 | |
| 30 | export function buildMeasurementPlan(result) { |
| 31 | const hasObservedUsage = Boolean(result.observedUsage?.sampleCount); |
no outgoing calls
no test coverage detected