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

#14327 Repro: Cannot add date filter when calendar is collapsed [ci skip] (#14356)

parent 991cec3b
No related branches found
No related tags found
No related merge requests found
......@@ -470,4 +470,19 @@ describe("scenarios > question > filter", () => {
"not.exist",
);
});
it.skip("should be able to add date filter with calendar collapsed (metabase#14327)", () => {
openOrdersTable({ mode: "notebook" });
cy.findByText("Filter").click();
cy.findByText("Created At").click();
cy.findByText("Previous").click();
cy.findByText("Before").click();
// Collapse the calendar view
cy.get(".Icon-calendar").click();
cy.findByText("Add filter")
.closest(".Button")
.should("not.be.disabled")
.click();
cy.findByText(/^Created At is before/i);
});
});
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