Skip to content

Commit

Permalink
test: fix system test firefox spawn message (#30791)
Browse files Browse the repository at this point in the history
  • Loading branch information
mschile authored Dec 19, 2024
1 parent 6d13d7d commit 46744bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system-tests/lib/normalizeStdout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export const normalizeStdout = function (str: string, options: any = {}) {
// Replaces connection warning since Chrome or Firefox sometimes take longer to connect
.replace(/Still waiting to connect to .+, retrying in 1 second \(attempt .+\/.+\)\n/g, '')
// Replaces CDP connection error message in Firefox since Cypress will retry
.replace(/Failed to spawn CDP with Firefox. Retrying.*\.\.\.\n/g, '')
.replace(/\nFailed to spawn CDP with Firefox. Retrying.*\.\.\.\n/g, '')

if (options.browser === 'webkit') {
// WebKit throws for lookups on undefined refs with "Can't find variable: <var>"
Expand Down

4 comments on commit 46744bb

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 46744bb Dec 19, 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.17.1/linux-arm64/develop-46744bb57b590f2b455bdf4f21ba2b07b32a213a/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 46744bb Dec 19, 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.17.1/darwin-arm64/develop-46744bb57b590f2b455bdf4f21ba2b07b32a213a/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 46744bb Dec 19, 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.17.1/darwin-x64/develop-46744bb57b590f2b455bdf4f21ba2b07b32a213a/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 46744bb Dec 19, 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 win32 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.17.1/win32-x64/develop-46744bb57b590f2b455bdf4f21ba2b07b32a213a/cypress.tgz

Please sign in to comment.