Skip to content

Commit

Permalink
allow polling on server side
Browse files Browse the repository at this point in the history
  • Loading branch information
flotwig committed Sep 11, 2022
1 parent 95aa0b4 commit a9d2691
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/server/lib/socket-base.ts
Expand Up @@ -144,8 +144,7 @@ export class SocketBase {
},
destroyUpgrade: false,
serveClient: false,
// allow polling in dev-mode-only, remove once webkit is no longer gated behind development
transports: process.env.CYPRESS_INTERNAL_ENV === 'production' ? ['websocket'] : ['websocket', 'polling'],
transports: ['websocket', 'polling'],
})
}

Expand Down

3 comments on commit a9d2691

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on a9d2691 Sep 11, 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/10.8.0/linux-x64/webkit-experimental-a9d269172a0ae1d55caffa82fdb683b83aaa1c4a/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on a9d2691 Sep 11, 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/10.8.0/darwin-arm64/webkit-experimental-a9d269172a0ae1d55caffa82fdb683b83aaa1c4a/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on a9d2691 Sep 11, 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/10.8.0/linux-arm64/webkit-experimental-a9d269172a0ae1d55caffa82fdb683b83aaa1c4a/cypress.tgz

Please sign in to comment.