Skip to content

Commit f8cca70

Browse files
chore: skip highly flaky tests (#28607)
* chore: skip highly flaky test on 3rd attempt * Apply suggestions from code review
1 parent 83c5a94 commit f8cca70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/app/cypress/e2e/runs.cy.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ describe('App: Runs', { viewportWidth: 1200 }, () => {
301301

302302
context('Runs - Create Project', () => {
303303
// TODO: fix flaky test
304-
it('when a project is created, injects new projectId into the config file, and sends expected UTM params', { retries: 15 }, () => {
304+
it.skip('when a project is created, injects new projectId into the config file, and sends expected UTM params', () => {
305305
cy.remoteGraphQLIntercept((obj) => {
306306
if (obj.operationName === 'SelectCloudProjectModal_CreateCloudProject_cloudProjectCreate') {
307307
obj.result.data!.cloudProjectCreate = {
@@ -458,7 +458,7 @@ describe('App: Runs', { viewportWidth: 1200 }, () => {
458458
})
459459

460460
// TODO: fix flaky test
461-
it('opens Connect Project modal after clicking Reconnect Project button', { retries: 15 }, () => {
461+
it.skip('opens Connect Project modal after clicking Reconnect Project button', () => {
462462
cy.findByText(defaultMessages.runs.errors.notFound.button).click()
463463

464464
cy.get('[aria-modal="true"]').should('exist')

0 commit comments

Comments
 (0)