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

Pivot table: Cypress test to ensure no value sorting (#14577)

parent 95f9c623
No related branches found
No related tags found
No related merge requests found
......@@ -301,6 +301,23 @@ describe("scenarios > visualizations > pivot tables", () => {
});
});
it("should not allow sorting of value fields", () => {
visitQuestionAdhoc({ dataset_query: testQuery, display: "pivot" });
cy.findByText(/Count by Users? → Source and Products? → Category/); // ad-hoc title
cy.findByText("Settings").click();
assertOnPivotSettings();
cy.findAllByText("Fields to use for the table")
.parent()
.parent()
.findAllByText(/Count/)
.click();
cy.findByText(/Formatting/);
cy.findByText(/Sort order/).should("not.exist");
});
it("should allow sorting fields", () => {
// Pivot by a single column with many values (100 bins).
// Having many values hides values that are sorted to the end.
......
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