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

#18344 Repro: The original question title is shown in the subscription instead...

#18344 Repro: The original question title is shown in the subscription instead of the curated title (#18355)
parent e4fbbcbc
No related branches found
No related tags found
No related merge requests found
import {
restore,
editDashboard,
saveDashboard,
setupSMTP,
} from "__support__/e2e/cypress";
import { USERS } from "__support__/e2e/cypress_data";
const {
admin: { first_name, last_name },
} = USERS;
describe.skip("issue 18344", () => {
beforeEach(() => {
restore();
cy.signInAsAdmin();
setupSMTP();
// Rename the question
cy.visit("/dashboard/1");
editDashboard();
// Open visualization options
cy.get(".Card").realHover();
cy.icon("palette").click();
cy.get(".Modal").within(() => {
cy.findByDisplayValue("Orders").type("Foo");
cy.button("Done").click();
});
saveDashboard();
cy.findByText("OrdersFoo");
});
it("subscription should not include original question name when it's been renamed in the dashboard (metabase#18344)", () => {
// Send a test email subscription
cy.icon("share").click();
cy.findByText("Dashboard subscriptions").click();
cy.findByText("Email it").click();
cy.findByPlaceholderText("Enter user names or email addresses").click();
cy.findByText(`${first_name} ${last_name}`).click();
// Click this just to close the popover that is blocking the "Send email now" button
cy.findByText(`To:`).click();
cy.button("Send email now").click();
cy.findByText("Email sent");
cy.request("GET", "http://localhost:80/email").then(({ body }) => {
expect(body[0].html).to.include("OrdersFoo");
});
});
});
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