Skip to content
Snippets Groups Projects
Unverified Commit a1682e10 authored by Ariya Hidayat's avatar Ariya Hidayat Committed by GitHub
Browse files

Repro #21513: Custom Expression validator too strict when field name is the...

Repro #21513: Custom Expression validator too strict when field name is the same as a function (#21567)
parent b253da02
No related branches found
No related tags found
No related merge requests found
import {
restore,
popover,
openProductsTable,
summarize,
enterCustomColumnDetails,
} from "__support__/e2e/cypress";
describe.skip("issue 21513", () => {
beforeEach(() => {
restore();
cy.signInAsAdmin();
});
it("should handle cc with the same name as an aggregation function (metabase#21513)", () => {
openProductsTable({ mode: "notebook" });
summarize({ mode: "notebook" });
popover()
.findByText("Count of rows")
.click();
cy.findByText("Pick a column to group by").click();
popover()
.findByText("Category")
.click();
cy.findByText("Custom column").click();
enterCustomColumnDetails({
formula: "[Count] * 2",
name: "Double Count",
});
cy.button("Done").should("not.be.disabled");
});
});
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