Skip to content

Commit

Permalink
chore: skip flaky tests (#29149)
Browse files Browse the repository at this point in the history
* chore: skip flakiest test

* Don't run flaky test in webkit
  • Loading branch information
jennifer-shehane committed Mar 18, 2024
1 parent fe97eec commit 7735405
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/app/cypress/e2e/specs_list_latest_runs.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,8 @@ describe('App/Cloud Integration - Latest runs and Average duration', { viewportW
})
})

context('when no runs are recorded', () => {
// TODO: Flaky test: Sometimes this test renders the empty view instead of the placeholder
context.skip('when no runs are recorded', () => {
it('shows placeholders for all visible specs', { defaultCommandTimeout: 6000 }, () => {
cy.loginUser()

Expand Down
2 changes: 1 addition & 1 deletion packages/driver/cypress/e2e/commands/net_stubbing.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2199,7 +2199,7 @@ describe('network stubbing', { retries: 15 }, function () {

context('with `times`', function () {
// TODO: fix flaky test https://github.com/cypress-io/cypress/issues/23434
it('only uses each handler N times', { retries: 15 }, function () {
it('only uses each handler N times', { browser: '!webkit', retries: 15 }, function () {
const url = uniqueRoute('/foo')
const third = sinon.stub()

Expand Down

5 comments on commit 7735405

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 7735405 Mar 18, 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.7.1/linux-arm64/develop-7735405891944d9098cf4c661b17ce0cca5f4cb9/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 7735405 Mar 18, 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.7.1/linux-x64/develop-7735405891944d9098cf4c661b17ce0cca5f4cb9/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 7735405 Mar 18, 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.7.1/darwin-x64/develop-7735405891944d9098cf4c661b17ce0cca5f4cb9/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 7735405 Mar 18, 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.7.1/win32-x64/develop-7735405891944d9098cf4c661b17ce0cca5f4cb9/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 7735405 Mar 18, 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.7.1/darwin-arm64/develop-7735405891944d9098cf4c661b17ce0cca5f4cb9/cypress.tgz

Please sign in to comment.