This is an automated email from the ASF dual-hosted git repository. michaelsmolina pushed a commit to branch 3.0 in repository https://gitbox.apache.org/repos/asf/superset.git
commit dac3009cc61e2406dd5c6380368f61396c085158 Author: Michael S. Molina <[email protected]> AuthorDate: Wed Sep 6 16:23:39 2023 -0300 fix: Cypress test to force mouseover (#25209) (cherry picked from commit 47518cb0026f9195036e6793a9b14166248aabf8) --- superset-frontend/cypress-base/cypress/e2e/explore/chart.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/cypress-base/cypress/e2e/explore/chart.test.js b/superset-frontend/cypress-base/cypress/e2e/explore/chart.test.js index 917440accd..c4084edfc7 100644 --- a/superset-frontend/cypress-base/cypress/e2e/explore/chart.test.js +++ b/superset-frontend/cypress-base/cypress/e2e/explore/chart.test.js @@ -32,7 +32,7 @@ function openDashboardsAddedTo() { cy.getBySel('actions-trigger').click(); cy.get('.ant-dropdown-menu-submenu-title') .contains('Dashboards added to') - .trigger('mouseover'); + .trigger('mouseover', { force: true }); } function closeDashboardsAddedTo() {
