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

#16327 Repro: Double binning menu for date fields when using Saved Question (Native) (#16359)

parent 0d0122d7
No related branches found
No related tags found
No related merge requests found
......@@ -665,6 +665,28 @@ describe("scenarios > question > native", () => {
cy.get("@sidebar").contains(/added/i);
});
it.skip("shouldn't render double binning options when question is based on the saved native question (metabase#16327)", () => {
cy.createNativeQuestion({
name: "16327",
native: { query: "select * from products limit 5" },
});
cy.visit("/question/new");
cy.findByText("Custom question").click();
cy.findByText("Saved Questions").click();
cy.findByText("16327").click();
cy.findByText("Pick the metric you want to see").click();
cy.findByText("Count of rows").click();
cy.findByText("Pick a column to group by").click();
cy.findByText(/CREATED_AT/i).realHover();
cy.findByText("by minute").click({ force: true });
// Implicit assertion - it fails if there is more than one instance of the string, which is exactly what we need for this repro
cy.findByText("Month");
});
["off", "on"].forEach(testCase => {
const isFeatureFlagTurnedOn = testCase === "off" ? false : true;
......
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