()
| 198 | ); |
| 199 | }, |
| 200 | redirectChain(): HTTPRequest[] { |
| 201 | // Puppeteer returns a fresh copy on every call (HTTPRequest returns |
| 202 | // `this._redirectChain.slice()`); mirror that so formatters can't share |
| 203 | // and accidentally mutate the same array across calls. |
| 204 | return [...(options.redirectChain ?? [])]; |
| 205 | }, |
| 206 | isNavigationRequest() { |
| 207 | return options.navigationRequest ?? false; |
| 208 | }, |
nothing calls this directly
no outgoing calls
no test coverage detected