(context: BrowserContext)
| 103 | * (E2E_DESK), where the browser is headed and already shows real chrome. |
| 104 | */ |
| 105 | export const installRecordingUrlBar = async (context: BrowserContext): Promise<void> => { |
| 106 | if (process.env.E2E_DESK === "1") return; |
| 107 | await context.addInitScript(injectUrlBar); |
| 108 | }; |
no outgoing calls
no test coverage detected