Skip to content

Commit

Permalink
test: fix system test firefox spawn message
Browse files Browse the repository at this point in the history
  • Loading branch information
mschile committed Dec 19, 2024
1 parent a15076f commit cfb6700
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

0 comments on commit cfb6700

Please sign in to comment.