(error: unknown, label: string)
| 11178 | } |
| 11179 | |
| 11180 | function missingLabelError(error: unknown, label: string): boolean { |
| 11181 | const message = error instanceof Error ? error.message : String(error); |
| 11182 | return message.includes(`'${label}' not found`) || message.includes(`"${label}" not found`); |
| 11183 | } |
| 11184 | |
| 11185 | function labelCapacityError(error: unknown): boolean { |
| 11186 | const message = error instanceof Error ? error.message : String(error); |
no outgoing calls
no test coverage detected