(o: ResponseMessage<Result>)
| 125 | } |
| 126 | |
| 127 | function assertErrorResponse(o: ResponseMessage<Result>): asserts o is ErrorMessage { |
| 128 | expect(o.type).toBe('error'); |
| 129 | } |
| 130 | |
| 131 | function assertQueuedNotification(o?: QueuedMessage): asserts o is QueuedNotification { |
| 132 | expect(o).toBeDefined(); |
no outgoing calls
no test coverage detected
searching dependent graphs…