diff --git a/superset-frontend/cypress-base/cypress/integration/dashboard/load.test.ts b/superset-frontend/cypress-base/cypress/integration/dashboard/load.test.ts index 487b2c7f0e1..bf60c2bec1a 100644 --- a/superset-frontend/cypress-base/cypress/integration/dashboard/load.test.ts +++ b/superset-frontend/cypress-base/cypress/integration/dashboard/load.test.ts @@ -45,6 +45,6 @@ describe('Dashboard load', () => { it('should send log data', () => { interceptLog(); cy.visit(WORLD_HEALTH_DASHBOARD); - cy.wait('@logs'); + cy.wait('@logs', { timeout: 15000 }); }); }); diff --git a/superset-frontend/cypress-base/cypress/integration/dashboard/nativeFilters.test.ts b/superset-frontend/cypress-base/cypress/integration/dashboard/nativeFilters.test.ts index b378388da31..e934a47bfb6 100644 --- a/superset-frontend/cypress-base/cypress/integration/dashboard/nativeFilters.test.ts +++ b/superset-frontend/cypress-base/cypress/integration/dashboard/nativeFilters.test.ts @@ -283,7 +283,7 @@ describe('Horizontal FilterBar', () => { cy.getBySel('form-item-value').should('have.length', 3); cy.viewport(768, 1024); cy.getBySel('form-item-value').should('have.length', 0); - openMoreFilters(); + openMoreFilters(false); cy.getBySel('form-item-value').should('have.length', 3); cy.getBySel('filter-bar').click();