(
payload: Record<string, unknown>,
field: ContextField,
error: { code: string; message: string },
)
| 349 | } |
| 350 | |
| 351 | function addContextError( |
| 352 | payload: Record<string, unknown>, |
| 353 | field: ContextField, |
| 354 | error: { code: string; message: string }, |
| 355 | ): void { |
| 356 | payload.errors = { |
| 357 | ...((payload.errors as Record<string, unknown> | undefined) ?? {}), |
| 358 | [field]: error, |
| 359 | }; |
| 360 | } |
| 361 | |
| 362 | async function printCurrentSelection( |
| 363 | projectDir: string, |
no outgoing calls
no test coverage detected