Function
registerResult
(result: MockResult<Procedure>, state: MockContext, prototypeState?: MockContext)
Source from the content-addressed store, hash-verified
| 585 | } |
| 586 | |
| 587 | function registerResult(result: MockResult<Procedure>, state: MockContext, prototypeState?: MockContext) { |
| 588 | state.results.push(result) |
| 589 | prototypeState?.results.push(result) |
| 590 | } |
| 591 | |
| 592 | function registerSettledResult(result: MockSettledResult<Procedure>, state: MockContext, prototypeState?: MockContext) { |
| 593 | state.settledResults.push(result) |
Tested by
no test coverage detected