(task: { title: string; description?: string | null })
| 239 | const remainder = rawBody.slice(rawConsumedEnd); |
| 240 | const separatorLength = getTitleSeparatorLength(remainder); |
| 241 | const consumedEnd = rawConsumedEnd + separatorLength; |
| 242 | |
| 243 | return { |
| 244 | title: normalizedTitle.value, |
| 245 | consumedEnd, |
| 246 | body: rawBody.slice(consumedEnd), |
| 247 | }; |
| 248 | } |
| 249 | |
| 250 | throw new ValidationError('Task title is required'); |
no test coverage detected