Skip to content

Commit

Permalink
try to fix flaky test (#5512)
Browse files Browse the repository at this point in the history
fixes #5511
  • Loading branch information
mifi authored Nov 12, 2024
1 parent bff5265 commit 8f04c32
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions e2e/cypress/integration/dashboard-transloadit.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,12 @@ describe('Dashboard with Transloadit', () => {

it('should complete when resuming after pause', () => {
cy.intercept({ path: '/assemblies', method: 'POST' }).as('createAssemblies')
cy.intercept('/resumable/*').as('resumable')
cy.intercept({ path: '/resumable/files/', method: 'POST' }).as(
'firstUpload',
)
cy.intercept({ path: '/resumable/files/*', method: 'PATCH' }).as(
'secondUpload',
)

cy.get('@file-input').selectFile(
[
Expand All @@ -361,12 +366,16 @@ describe('Dashboard with Transloadit', () => {

cy.wait('@createAssemblies')

// wait for the upload to start, then pause
cy.wait('@firstUpload')
cy.get('button[data-cy=togglePauseResume]').click()

// eslint-disable-next-line cypress/no-unnecessary-waiting
cy.wait(300) // Wait an arbitrary amount of time as a user would do.

cy.get('button[data-cy=togglePauseResume]').click()

cy.wait('@resumable')
cy.wait('@secondUpload')

cy.get('.uppy-StatusBar-statusPrimary').should('contain', 'Complete')
})
Expand Down

0 comments on commit 8f04c32

Please sign in to comment.