import { describe, expect, it } from "vitest"; import { renderMarkdown } from "../../src/lib/markdown"; describe("renderMarkdown", () => { it("renders standard markdown", () => { const html = renderMarkdown("# Title\n\n**bold** and *italic*"); expect(html).toContain("