Skip to content

Commit 7dd4a14

Browse files
test: increase a timeout to avoid failing on CI in Windows (#23346)
* get path for platform in test * run windows workflow * increase timeout due to windows flake * update a second timeout * set timeouts to 12, move to proper command Co-authored-by: Matt Henkes <[email protected]>
1 parent 91beb90 commit 7dd4a14

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

circle.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,7 @@ windowsWorkflowFilters: &windows-workflow-filters
6464
or:
6565
- equal: [ develop, << pipeline.git.branch >> ]
6666
- equal: [ linux-arm64, << pipeline.git.branch >> ]
67-
- equal: [ 'fix-or-skip-flaky-tests', << pipeline.git.branch >> ]
68-
- equal: [ 'lmiller/windows-vite-fix', << pipeline.git.branch >> ]
67+
- equal: [ 'marktnoonan/windows-path-fix', << pipeline.git.branch >> ]
6968
- matches:
7069
pattern: "-release$"
7170
value: << pipeline.git.branch >>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ describe('App: Specs', () => {
454454
})
455455

456456
// Timeout is increased here to allow ample time for the config change to be processed
457-
cy.contains('src/e2e/**/*.{js,jsx}', { timeout: 10000 }).should('be.visible')
457+
cy.contains('src/e2e/**/*.{js,jsx}', { timeout: 12000 }).should('be.visible')
458458
cy.contains('No Specs Found').should('be.visible')
459459

460460
cy.findByRole('button', { name: 'New Spec' }).click()
@@ -824,7 +824,7 @@ describe('App: Specs', () => {
824824
})
825825

826826
// Timeout is increased here to allow ample time for the config change to be processed
827-
cy.contains('src/specs-folder/*.{js,jsx}').should('be.visible', { timeout: 12000 })
827+
cy.contains('src/specs-folder/*.{js,jsx}', { timeout: 12000 }).should('be.visible')
828828
cy.contains('No Specs Found').should('be.visible')
829829

830830
cy.findByRole('button', { name: 'New Spec' }).click()

0 commit comments

Comments
 (0)