deno.land / x / lume@v2.1.4 / tests / remark.test.ts
1234567891011121314import { assertSiteSnapshot, build, getSite } from "./utils.ts";import remark from "../plugins/remark.ts";
Deno.test("Build a markdown site", async (t) => { const site = getSite({ src: "remark", });
site.use(remark());
await build(site); await assertSiteSnapshot(t, site);});
Version Info