Skip to content

Commit

Permalink
Update packages/server/lib/browsers/chrome.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Matt Schile <mschile@cypress.io>
  • Loading branch information
cacieprins and mschile committed May 22, 2024
1 parent 28e86d8 commit 3cc3904
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/server/lib/browsers/chrome.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@ const _mergeChromePreferences = (originalPrefs: ChromePreferences, newPrefs: Chr
}

const _writeChromePreferences = (userDir: string, originalPrefs: ChromePreferences, newPrefs: ChromePreferences): Promise<void> => {
// skip writing the preferences if requested by the user,
// typically used when the AUT encrypts the user data dir, causing relaunches of the browser not to work
// see https://github.com/cypress-io/cypress/issues/29330
if (process.env.IGNORE_CHROME_PREFERENCES) {
debug('ignoring chrome preferences: not writing to preference files')

Expand Down

4 comments on commit 3cc3904

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 3cc3904 May 22, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the linux x64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/13.11.0/linux-x64/ignore-chrom-prefs-3cc390417fb045167f16f2d3fcefda1cced099ad/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 3cc3904 May 22, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the linux arm64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/13.11.0/linux-arm64/ignore-chrom-prefs-3cc390417fb045167f16f2d3fcefda1cced099ad/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 3cc3904 May 22, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the darwin arm64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/13.11.0/darwin-arm64/ignore-chrom-prefs-3cc390417fb045167f16f2d3fcefda1cced099ad/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 3cc3904 May 22, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the darwin x64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/13.11.0/darwin-x64/ignore-chrom-prefs-3cc390417fb045167f16f2d3fcefda1cced099ad/cypress.tgz

Please sign in to comment.