msyavuz commented on code in PR #31972:
URL: https://github.com/apache/superset/pull/31972#discussion_r1935549430


##########
superset-frontend/cypress-base/cypress/e2e/dashboard/horizontalFilterBar.test.ts:
##########
@@ -57,24 +57,24 @@ function setFilterBarOrientation(orientation: 'vertical' | 
'horizontal') {
     .trigger('mouseover');
 
   if (orientation === 'vertical') {
-    cy.get('.antd5-menu-item-selected')
+    cy.get('.antd5-dropdown-menu-item-selected')
       .contains('Horizontal (Top)')
       .should('exist');
-    cy.get('.antd5-menu-item').contains('Vertical (Left)').click();
+    cy.get('.antd5-dropdown-menu-item').contains('Vertical (Left)').click();
     cy.getBySel('dashboard-filters-panel').should('exist');
   } else {
-    cy.get('.antd5-menu-item-selected')
+    cy.get('.antd5-dropdown-menu-item-selected')
       .contains('Vertical (Left)')
       .should('exist');
-    cy.get('.antd5-menu-item').contains('Horizontal (Top)').click();
+    cy.get('.antd5-dropdown-menu-item').contains('Horizontal (Top)').click();
     cy.getBySel('loading-indicator').should('exist');
     cy.getBySel('filter-bar').should('exist');
     cy.getBySel('dashboard-filters-panel').should('not.exist');
   }
 }
 
 describe('Horizontal FilterBar', () => {
-  it('should go from vertical to horizontal and the opposite', () => {
+  it.only('should go from vertical to horizontal and the opposite', () => {
     visitDashboard();

Review Comment:
   oops, removed



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to