| 58 | import {getNetworkMultiplierFromString} from './WaitForHelper.js'; |
| 59 | |
| 60 | interface McpContextOptions { |
| 61 | // Whether the DevTools windows are exposed as pages for debugging of DevTools. |
| 62 | experimentalDevToolsDebugging: boolean; |
| 63 | // Whether all page-like targets are exposed as pages. |
| 64 | experimentalIncludeAllPages?: boolean; |
| 65 | // Whether CrUX data should be fetched. |
| 66 | performanceCrux: boolean; |
| 67 | // Whether allowlist/blocklist is configured. |
| 68 | hasNetworkBlockOrAllowlist?: boolean; |
| 69 | } |
| 70 | |
| 71 | const DEFAULT_TIMEOUT = 5_000; |
| 72 | const NAVIGATION_TIMEOUT = 10_000; |
nothing calls this directly
no outgoing calls
no test coverage detected