import { trimIndentation } from "../../../spec/support/utils.js"; import markdownService from "./markdown.js"; describe("markdown", () => { it("converts h1 heading", () => { const result = markdownService.renderToHtml(trimIndentation`\ # Hello ## world # another one Hello, world `, "title"); expect(result).toBe(trimIndentation`\

Hello

world

another one

Hello, world

`); }); });