diff --git a/e2e/test/scenarios/dashboard/reproductions/34382-dashboard-back-navigation-preserve-filters.cy.spec.js b/e2e/test/scenarios/dashboard/reproductions/34382-dashboard-back-navigation-preserve-filters.cy.spec.js index 39446dc8dd15382bb43a2715f4d99edbc3c97676..d851697d4cf5b306dd07db87d4b9ef3769a58c0e 100644 --- a/e2e/test/scenarios/dashboard/reproductions/34382-dashboard-back-navigation-preserve-filters.cy.spec.js +++ b/e2e/test/scenarios/dashboard/reproductions/34382-dashboard-back-navigation-preserve-filters.cy.spec.js @@ -21,36 +21,32 @@ describe("issue 34382", () => { ); }); - it( - "should preserve filter value when navigating between the dashboard and the query builder with auto-apply disabled (metabase#34382)", - { tags: "@flaky" }, - () => { - createDashboardWithCards(); - visitDashboard("@dashboardId"); - - addFilterValue("Gizmo"); - applyFilter(); - - cy.log("Navigate to Products question"); - getDashboardCard().findByText("Products").click(); - - cy.log("Navigate back to dashboard"); - queryBuilderHeader() - .findByLabelText("Back to Products in a dashboard") - .click(); - - cy.location("search").should("eq", "?category=Gizmo"); - filterWidget().contains("Gizmo"); - - getDashboardCard().within(() => { - // only products with category "Gizmo" are filtered - cy.findAllByTestId("table-row") - .find("td") - .eq(3) - .should("contain", "Gizmo"); - }); - }, - ); + it("should preserve filter value when navigating between the dashboard and the query builder with auto-apply disabled (metabase#34382)", () => { + createDashboardWithCards(); + visitDashboard("@dashboardId"); + + addFilterValue("Gizmo"); + applyFilter(); + + cy.log("Navigate to Products question"); + getDashboardCard().findByText("Products").click(); + + cy.log("Navigate back to dashboard"); + queryBuilderHeader() + .findByLabelText("Back to Products in a dashboard") + .click(); + + cy.location("search").should("eq", "?category=Gizmo"); + filterWidget().contains("Gizmo"); + + getDashboardCard().within(() => { + // only products with category "Gizmo" are filtered + cy.findAllByTestId("table-row") + .find("td") + .eq(3) + .should("contain", "Gizmo"); + }); + }); }); const createDashboardWithCards = () => { diff --git a/e2e/test/scenarios/visualizations-tabular/drillthroughs/chart_drill.cy.spec.js b/e2e/test/scenarios/visualizations-tabular/drillthroughs/chart_drill.cy.spec.js index d41757307da7a8c79e1d9c428180f6c5fdc0b1c7..a275945010fe6ad2a2ca63b338c8e94264845f8e 100644 --- a/e2e/test/scenarios/visualizations-tabular/drillthroughs/chart_drill.cy.spec.js +++ b/e2e/test/scenarios/visualizations-tabular/drillthroughs/chart_drill.cy.spec.js @@ -25,7 +25,7 @@ describe("scenarios > visualizations > drillthroughs > chart drill", () => { cy.signInAsAdmin(); }); - it("should allow brush date filter", { tags: "@flaky" }, () => { + it("should allow brush date filter", () => { cy.createQuestion( { name: "Brush Date Temporal Filter",