test: drop redundant line info-card default footer case

This commit is contained in:
Peter Steinberger 2026-02-16 07:37:41 +00:00
parent 223e2a7127
commit 720aa3c1e6
1 changed files with 0 additions and 5 deletions

View File

@ -18,11 +18,6 @@ describe("createInfoCard", () => {
const footer = card.footer as { contents: Array<{ text: string }> };
expect(footer.contents[0].text).toBe("Footer text");
});
it("omits footer when not provided", () => {
const card = createInfoCard("Title", "Body");
expect(card.footer).toBeUndefined();
});
});
describe("createListCard", () => {