From ae6060d777ad51e9ab4e0ef1ef1d5e60ede583f3 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 16 Feb 2026 07:02:37 +0000 Subject: [PATCH] test: remove redundant line markdown conversion smoke checks --- src/line/markdown-to-line.test.ts | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/src/line/markdown-to-line.test.ts b/src/line/markdown-to-line.test.ts index 99c37a4f499..541b145d5c6 100644 --- a/src/line/markdown-to-line.test.ts +++ b/src/line/markdown-to-line.test.ts @@ -230,21 +230,6 @@ Some ~~deleted~~ content.`; }); describe("convertTableToFlexBubble", () => { - it("creates a receipt-style card for 2-column tables", () => { - const table = { - headers: ["Item", "Price"], - rows: [ - ["Apple", "$1"], - ["Banana", "$2"], - ], - }; - - const bubble = convertTableToFlexBubble(table); - - expect(bubble.type).toBe("bubble"); - expect(bubble.body).toBeDefined(); - }); - it("creates a multi-column layout for 3+ column tables", () => { const table = { headers: ["A", "B", "C"], @@ -364,15 +349,6 @@ That's it.`; expect(result.text).not.toContain("```"); }); - it("processes text with markdown formatting", () => { - const text = "This is **bold** and *italic* text."; - - const result = processLineMessage(text); - - expect(result.text).toBe("This is bold and italic text."); - expect(result.flexMessages).toHaveLength(0); - }); - it("handles mixed content", () => { const text = `# Summary