import { describe, expect, it } from "@jest/globals"; import { encodeHTML } from "../src/common/html.js"; describe("Test html.js", () => { it("should test encodeHTML", () => { expect(encodeHTML(`hello world<,.#4^&^@%!))`)).toBe( "<html>hello world<,.#4^&^@%!))", ); }); });