@lowlighter/markdown 1.2.3 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,7 +2,7 @@ import { expect, test } from "@libs/testing"
2
2
  import { Renderer } from "../renderer.ts"
3
3
  import plugin from "./mermaid.ts"
4
4
 
5
- test.skip("deno")("Plugin.mermaid renders mermaid diagrams", async () => {
5
+ test.skip("deno")("`Plugin.mermaid` renders mermaid diagrams", async () => {
6
6
  const markdown = new Renderer({ plugins: [plugin] })
7
7
  await expect(markdown.render("```mermaid\ngraph TD;\nA-->A;\n```")).resolves.toMatch(/foo<br>\nbar/)
8
8
  }, { permissions: { read: true, env: true, sys: true, write: "inherit", run: "inherit" } })