Skip to content

Commit

Permalink
Merge branch 'retry-flake' of github.com:cypress-io/cypress into retr…
Browse files Browse the repository at this point in the history
…y-flake
  • Loading branch information
flotwig committed Nov 18, 2022
2 parents 8065fd3 + 23b753e commit a83f8cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/network/test/integration/connect_spec.ts
Expand Up @@ -12,6 +12,7 @@ chai.use(sinonChai)
describe('lib/connect', function () {
context('.getAddress', function () {
it('resolves localhost on 127.0.0.1 immediately', function () {
// TODO: fix flaky test https://github.com/cypress-io/cypress/issues/23155
this.retries(15)
this.timeout(50)

Expand Down
2 changes: 1 addition & 1 deletion packages/server/lib/browsers/webkit.ts
Expand Up @@ -136,7 +136,7 @@ export async function open (browser: Browser, url: string, options: BrowserLaunc
*/
private suppressUnhandledEconnreset () {
unhandledExceptions.handle((err: NodeJS.ErrnoException) => {
return err.code !== 'ECONNRESET'
return err.code === 'ECONNRESET'
})

// restore normal exception handling behavior
Expand Down

5 comments on commit a83f8cb

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on a83f8cb Nov 18, 2022

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 platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/11.2.0/linux-arm64/retry-flake-a83f8cbaeca9b8fcc5d8e47fb7a37ec1854ddae3/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on a83f8cb Nov 18, 2022

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 platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/11.2.0/linux-x64/retry-flake-a83f8cbaeca9b8fcc5d8e47fb7a37ec1854ddae3/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on a83f8cb Nov 18, 2022

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 platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/11.2.0/darwin-arm64/retry-flake-a83f8cbaeca9b8fcc5d8e47fb7a37ec1854ddae3/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on a83f8cb Nov 18, 2022

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 platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/11.2.0/darwin-x64/retry-flake-a83f8cbaeca9b8fcc5d8e47fb7a37ec1854ddae3/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on a83f8cb Nov 18, 2022

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 platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/11.2.0/win32-x64/retry-flake-a83f8cbaeca9b8fcc5d8e47fb7a37ec1854ddae3/cypress.tgz

Please sign in to comment.