test: remove duplicate hr spacing assertion

This commit is contained in:
Peter Steinberger
2026-02-16 06:16:33 +00:00
parent a0b459b8f9
commit a82df1015b

View File

@@ -27,16 +27,6 @@ describe("hr (thematic break) spacing", () => {
expect(result.text).toBe("───");
});
it("hr between paragraphs renders with separator", () => {
const input = `Para 1
---
Para 2`;
const result = markdownToIR(input);
expect(result.text).toBe("Para 1\n\n───\n\nPara 2");
});
it("hr interrupting paragraph (setext heading case)", () => {
// Note: "Para\n---" is a setext heading in CommonMark!
// Using *** to test actual HR behavior