(response, body)
| 2131 | }; |
| 2132 | |
| 2133 | const rebuildConsumedResponse = function (response, body) { |
| 2134 | return new Response(body, { |
| 2135 | status: response.status, |
| 2136 | statusText: response.statusText, |
| 2137 | headers: response.headers, |
| 2138 | }); |
| 2139 | }; |
| 2140 | |
| 2141 | global.__test__ = Object.assign(global.__test__ || {}, { |
| 2142 | isTrackingRequest: isTrackingRequest, |