import { expect, test } from "bun:test"; import { renderDocument } from "../src/index.ts"; test("escapes metadata and script URLs while preserving trusted rendered body", () => { const html = renderDocument({ meta: { title: '', description: '" onload="x' }, body: "
trusted
", scripts: ['">'], }); expect(html).not.toContain(''); expect(html).toContain("</title>"); expect(html).toContain("
trusted
"); expect(html).not.toContain(""); }); test("deduplicates runtime scripts and module preloads", () => { const html = renderDocument({ meta: { title: "Page" }, body: "", scripts: ["/app.js", "/app.js"], }); expect(html.match(/rel="modulepreload"/g)).toHaveLength(1); expect(html.match(/src="\/app\.js"/g)).toHaveLength(1); });