diff --git a/packages/server/lib/environment.js b/packages/server/lib/environment.js index c9e7c59e9e9f..4a20b9df2443 100644 --- a/packages/server/lib/environment.js +++ b/packages/server/lib/environment.js @@ -62,6 +62,10 @@ try { // https://github.com/cypress-io/cypress/issues/15814 app.commandLine.appendSwitch('disable-dev-shm-usage') + // prevent navigation throttling when navigating in the browser rapid fire + // https://github.com/cypress-io/cypress/pull/20271 + app.commandLine.appendSwitch('disable-ipc-flooding-protection') + if (os.platform() === 'linux') { app.disableHardwareAcceleration() }