Files
openclaw/src/plugin-sdk/html-entity-runtime.test.ts
2026-07-14 00:16:37 -07:00

9 lines
322 B
TypeScript

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("© < 😀 �")).toBe("© < 😀 �");
});
});