(resultRef)
| 279 | |
| 280 | // The response envelope is a record pairing a `result` union with the request `id`. |
| 281 | const envelope = (resultRef) => group('x.CommandResponse', [field('id', ['uint']), field('result', [ref(resultRef)])]) |
| 282 | |
| 283 | it('marks an undispatchable result-grouping union (reached via `result`) as correlated', () => { |
| 284 | // CommandResponse.result -> x.ResultData, a union of result records that cannot |
no test coverage detected