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

[E2E] Fix flaky reproduction for 29951 (#35887)

* Visit model query directly

* Use helper to save model metadata changes

* Limit the number of results even more

* Improve assertions

* Increase the viewport width in order to see all columns
parent 887e8bf4
No related branches found
No related tags found
No related merge requests found
import {
getNotebookStep,
openQuestionActions,
popover,
restore,
saveMetadataChanges,
} from "e2e/support/helpers";
import { SAMPLE_DATABASE } from "e2e/support/cypress_sample_database";
import { SAMPLE_DB_ID } from "e2e/support/cypress_data";
......@@ -17,12 +16,12 @@ const questionDetails = {
CC1: ["+", ["field", ORDERS.TOTAL], 1],
CC2: ["+", ["field", ORDERS.TOTAL], 1],
},
limit: 5,
limit: 2,
},
dataset: true,
};
describe("issue 29951", { requestTimeout: 10000 }, () => {
describe("issue 29951", { requestTimeout: 10000, viewportWidth: 1600 }, () => {
beforeEach(() => {
restore();
cy.signInAsAdmin();
......@@ -33,22 +32,24 @@ describe("issue 29951", { requestTimeout: 10000 }, () => {
});
it("should allow to run the model query after changing custom columns (metabase#29951)", () => {
cy.createQuestion(questionDetails, { visitQuestion: true });
cy.createQuestion(questionDetails).then(({ body: { id } }) => {
cy.visit(`/model/${id}/query`);
cy.wait("@publicShema");
});
openQuestionActions();
popover().findByText("Edit query definition").click();
cy.wait("@publicShema");
removeExpression("CC2");
// The UI shows us the "play" icon, indicating we should refresh the query,
// but the point of this repro is to save without refreshing
cy.button("Get Answer").should("be.visible");
cy.button("Save changes").click();
cy.wait(["@updateCard", "@dataset"]);
saveMetadataChanges();
cy.findAllByTestId("header-cell").last().should("have.text", "CC1");
dragColumn(0, 100);
cy.findByTestId("qb-header").button("Refresh").click();
cy.wait("@dataset");
cy.findByTestId("view-footer").should("contain", "Showing 5 rows");
cy.get(".cellData").should("contain", "37.65");
cy.findByTestId("view-footer").should("contain", "Showing 2 rows");
});
});
......
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