Skip to main content
Module

x/lume/tests/svgo.test.ts

πŸ”₯ Static site generator for Deno πŸ¦•
Very Popular
Go to Latest
File
import { assertSiteSnapshot, build, getSite } from "./utils.ts";import svgo from "../plugins/svgo.ts";
Deno.test("terser plugin", async (t) => { const site = getSite({ src: "svgo", });
site.use(svgo());
await build(site); await assertSiteSnapshot(t, site);});