We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9b31e9 commit 9128da1Copy full SHA for 9128da1
lib/md-to-html.test.ts
@@ -0,0 +1,6 @@
1
+import { expect, test } from "vitest";
2
+import { mdToHtml } from "./md-to-html";
3
+
4
+test("mdToHtml", async () => {
5
+ await expect(mdToHtml("**hello**")).resolves.toMatchInlineSnapshot(`"<strong>hello</strong>"`);
6
+});
0 commit comments