diff --git a/frontend/test/metabase/scenarios/question/custom_column.cy.spec.js b/frontend/test/metabase/scenarios/question/custom_column.cy.spec.js index 3838990f5a3f2594b3606de1633c0e4c46f45084..622a158605919bba7fc3c20560c12c1866f4b5bf 100644 --- a/frontend/test/metabase/scenarios/question/custom_column.cy.spec.js +++ b/frontend/test/metabase/scenarios/question/custom_column.cy.spec.js @@ -628,7 +628,7 @@ describe("scenarios > question > custom columns", () => { }); }); - it.skip("should maintain data type (metabase#13122)", () => { + it("should maintain data type (metabase#13122)", () => { openOrdersTable({ mode: "notebook" }); cy.findByText("Custom column").click(); popover().within(() => { @@ -645,7 +645,7 @@ describe("scenarios > question > custom columns", () => { cy.findByPlaceholderText("Enter a number").should("not.exist"); }); - it.skip("filter based on `concat` function should not offer numeric options (metabase#13217)", () => { + it("filter based on `concat` function should not offer numeric options (metabase#13217)", () => { openPeopleTable({ mode: "notebook" }); cy.findByText("Custom column").click(); popover().within(() => { diff --git a/frontend/test/metabase/scenarios/question/filter.cy.spec.js b/frontend/test/metabase/scenarios/question/filter.cy.spec.js index 0a662714bd50c74beae957a714a638819163157d..bd7fb81688290d2ff495dc00e98c767474698a16 100644 --- a/frontend/test/metabase/scenarios/question/filter.cy.spec.js +++ b/frontend/test/metabase/scenarios/question/filter.cy.spec.js @@ -570,9 +570,8 @@ describe("scenarios > question > filter", () => { cy.findByText(/^Created At is before/i); }); - it.skip("should display original custom expression filter with dates on subsequent click (metabase#12492)", () => { - cy.server(); - cy.route("POST", "/api/dataset").as("dataset"); + it("should display original custom expression filter with dates on subsequent click (metabase#12492)", () => { + cy.intercept("POST", "/api/dataset").as("dataset"); visitQuestionAdhoc({ dataset_query: { @@ -595,11 +594,9 @@ describe("scenarios > question > filter", () => { }); cy.wait("@dataset"); - cy.findByText(/^Created At is after/i) - .should("not.contain", "Unknown") - .click(); + cy.findByText(/Created At > Product? → Created At/i).click(); cy.get("[contenteditable='true']").contains( - /\[Created At\] > \[Products? -> Created At\]/, + /\[Created At\] > \[Products? → Created At\]/, ); });