Skip to content
Snippets Groups Projects
Unverified Commit a9025e00 authored by Nemanja Glumac's avatar Nemanja Glumac Committed by GitHub
Browse files

Unskip merged repros (#16390)

parent 7f9bab2f
No related branches found
No related tags found
No related merge requests found
......@@ -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(() => {
......
......@@ -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\]/,
);
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment