()
| 59 | |
| 60 | /** Build a synchronous-write success response (no operation_name). */ |
| 61 | export function syncWriteOk(): MockResponse { |
| 62 | return { status: 200, body: { query_execution_status: 'Success' } }; |
| 63 | } |
| 64 | |
| 65 | /** Read response carrying a single wanted row at the given status. */ |
| 66 | export function readWantedRow(row: Record<string, unknown> | null): MockResponse { |
no outgoing calls