(value: unknown)
| 188 | } |
| 189 | |
| 190 | function assertSelectedOutputBytes(value: unknown): number { |
| 191 | const bytes = getInlineJsonByteLength(value) ?? 0 |
| 192 | assertInlineMaterializationSize(bytes, MAX_INLINE_MATERIALIZATION_BYTES) |
| 193 | return bytes |
| 194 | } |
| 195 | |
| 196 | async function buildMinimalResult( |
| 197 | result: ExecutionResult, |
no test coverage detected