Skip to content
Snippets Groups Projects
Unverified Commit 113d9536 authored by Alexander Polyankin's avatar Alexander Polyankin Committed by GitHub
Browse files

Add e2e repro (#44656)

parent 191d8459
No related branches found
No related tags found
No related merge requests found
......@@ -1111,3 +1111,27 @@ describe("issue 31769", () => {
.should("exist");
});
});
describe("issue 39448", () => {
beforeEach(() => {
restore();
cy.signInAsNormalUser();
});
it("should load joined table metadata for suggested join conditions (metabase#39448)", () => {
openOrdersTable({ mode: "notebook" });
cy.findByTestId("action-buttons").button("Join data").click();
entityPickerModal().within(() => {
entityPickerModalTab("Tables").click();
cy.findByText("Products").click();
});
getNotebookStep("join").within(() => {
cy.findByLabelText("Right table").should("have.text", "Products");
cy.findByLabelText("Left column")
.findByText("Product ID")
.should("be.visible");
cy.findByLabelText("Right column").findByText("ID").should("be.visible");
cy.findByLabelText("Change operator").should("have.text", "=");
});
});
});
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