import { describe, expect, it } from "vitest"; import { decodeHtmlEntities } from "./html-entity-runtime.js"; describe("decodeHtmlEntities", () => { it("exposes single-pass HTML5 decoding to plugins", () => { expect(decodeHtmlEntities("© &lt; 😀 �")).toBe("© < 😀 �"); }); });