(reason: string | null)
| 56 | } |
| 57 | |
| 58 | function buildBumpValue(reason: string | null): string { |
| 59 | const sanitized = sanitizeValue(reason ?? '') |
| 60 | const label = sanitized.length > 0 ? sanitized : 'manual' |
| 61 | return `${label}|${Date.now()}|${randomUUID().slice(0, 8)}` |
| 62 | } |
| 63 | |
| 64 | function setInjectionAndDescribe( |
| 65 | nextValue: string | null, |
no test coverage detected