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

#18114 Repro: Dashboard Textbox does not render links unless using Markdown (#18265)

parent 6f2baf6f
No related branches found
No related tags found
No related merge requests found
......@@ -94,5 +94,19 @@ describe("scenarios > dashboard > text-box", () => {
.should("have.css", "overflow", "auto")
.scrollTo("bottom");
});
it.skip("should literal links, and not just the markdown flavor of it (metabse#18114)", () => {
addTextBox(
"- Visit https://www.metabase.com{enter}- Or go to [Metabase](https://www.metabase.com)",
);
cy.findByText("Save").click();
cy.findByText("You're editing this dashboard.").should("not.exist");
cy.get(".Card")
.findAllByRole("link")
.should("be.visible")
.and("have.length", 2);
});
});
});
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