(file, phaseId, stepId)
| 218 | } |
| 219 | |
| 220 | function entryKey(file, phaseId, stepId) { |
| 221 | const rel = path.relative(STORYBOARD_DIR, file); |
| 222 | return `${rel}#${phaseId}/${stepId}`; |
| 223 | } |
| 224 | |
| 225 | function loadAllowlist() { |
| 226 | if (!fs.existsSync(ALLOWLIST_PATH)) return { entries: {} }; |
no outgoing calls
no test coverage detected