From f74d56bd3b62a86d161a600f1896efe95d26a956 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 16 Feb 2026 07:40:45 +0000 Subject: [PATCH] test: remove redundant image-card aspect ratio passthrough case --- src/line/flex-templates.test.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/line/flex-templates.test.ts b/src/line/flex-templates.test.ts index 678bb2bf359..bf7a5c896a7 100644 --- a/src/line/flex-templates.test.ts +++ b/src/line/flex-templates.test.ts @@ -54,14 +54,6 @@ describe("createImageCard", () => { expect(body.contents.length).toBe(2); expect(body.contents[1].text).toBe("Body text"); }); - - it("applies custom aspect ratio", () => { - const card = createImageCard("https://example.com/img.jpg", "Title", undefined, { - aspectRatio: "16:9", - }); - - expect((card.hero as { aspectRatio: string }).aspectRatio).toBe("16:9"); - }); }); describe("createActionCard", () => {