Skip to content

Commit 1ec080e

Browse files
authored
fix: skip flaky csv download test for explorer. (#6373)
* fix: add timeouts to waits in explorer test's csv downloads * fix: skip flaky csv download test for now. Debug later.
1 parent 2897070 commit 1ec080e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cypress/e2e/shared/explorer.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -913,7 +913,7 @@ describe('DataExplorer', () => {
913913
})
914914
})
915915

916-
describe('download csv', () => {
916+
describe.skip('download csv', () => {
917917
// docs for how to test form submission as file download:
918918
// https://github.com/cypress-io/cypress-example-recipes/blob/cc13866e55bd28e1d1323ba6d498d85204f292b5/examples/testing-dom__download/cypress/e2e/form-submission-spec.cy.js
919919
const downloadsDirectory = Cypress.config('downloadsFolder')
@@ -947,8 +947,8 @@ describe('DataExplorer', () => {
947947
.click()
948948
})
949949

950-
cy.wait('@query')
951-
.its('request')
950+
cy.wait('@query', {timeout: 5000})
951+
.its('request', {timeout: 5000})
952952
.then(req => {
953953
cy.request(req)
954954
.then(({body, headers}) => {

0 commit comments

Comments
 (0)