Skip to content
Snippets Groups Projects
Unverified Commit 4d943dac authored by Kamil Mielnik's avatar Kamil Mielnik Committed by GitHub
Browse files

Repro #29094 - Notebook filter field allows non boolean custom expressions (#39502)

* Add repro for #29094

* Use arrow function
parent ec5a4da8
No related branches found
No related tags found
No related merge requests found
import {
enterCustomColumnDetails,
getNotebookStep,
popover,
restore,
startNewQuestion,
} from "e2e/support/helpers";
describe("issue 29094", () => {
beforeEach(() => {
restore();
cy.signInAsNormalUser();
});
it("disallows adding a filter using non-boolean custom expression (metabase#29094)", () => {
startNewQuestion();
popover().within(() => {
cy.findByText("Raw Data").click();
cy.findByText("Orders").click();
});
getNotebookStep("filter")
.findByText("Add filters to narrow your answer")
.click();
popover().within(() => {
cy.findByText("Custom Expression").click();
enterCustomColumnDetails({ formula: "[Tax] * 22" });
cy.realPress("Tab");
cy.button("Done").should("be.disabled");
cy.findByText("Invalid expression").should("exist");
});
});
});
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