(request: RequestMock)
| 23 | private mocks: Array<RequestMock> = []; |
| 24 | |
| 25 | on(request: RequestMock) { |
| 26 | this.mocks.push(request); |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | * Initializes the mock by temporary overwriting `global.fetch`. |
no outgoing calls
no test coverage detected