Skip to content
Snippets Groups Projects
Unverified Commit f7f612a5 authored by john-metabase's avatar john-metabase Committed by GitHub
Browse files

Add limit to dataset for 29951 repro test (#31921)

parent 83779de3
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,7 @@ const questionDetails = {
CC1: ["+", ["field", ORDERS.TOTAL], 1],
CC2: ["+", ["field", ORDERS.TOTAL], 1],
},
limit: 200,
},
dataset: true,
};
......@@ -43,7 +44,7 @@ describe("issue 29951", () => {
cy.findAllByRole("button", { name: "Get Answer" }).first().click();
cy.wait("@dataset");
// eslint-disable-next-line no-unscoped-text-selectors -- deprecated usage
cy.findByText("Showing first 2,000 rows").should("be.visible");
cy.findByText("Showing 200 rows").should("be.visible");
});
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment