41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
import { test } from "node:test";
|
|
import * as engine from "./ssr.ts";
|
|
|
|
test("sanity", (t) => t.assert.equal(engine.ssrSync("gm <3").text, "gm <3"));
|
|
test("simple tree", (t) =>
|
|
t.assert.equal(
|
|
engine.ssrSync(
|
|
<main class={["a", "b"]}>
|
|
<h1 style="background-color:red">hello world</h1>
|
|
<p>haha</p>
|
|
{1}|
|
|
{0}|
|
|
{true}|
|
|
{false}|
|
|
{null}|
|
|
{undefined}|
|
|
</main>,
|
|
).text,
|
|
'<main class="a b"><h1 style=background-color:red>hello world</h1><p>haha</p>1|0|||||</main>',
|
|
));
|
|
test("unescaped/escaped html", (t) =>
|
|
t.assert.equal(
|
|
engine.ssrSync(<div>{engine.html("<fuck>")}{"\"&'`<>"}</div>).text,
|
|
"<div><fuck>"&'`<></div>",
|
|
));
|
|
test("clsx built-in", (t) =>
|
|
t.assert.equal(
|
|
engine.ssrSync(
|
|
<>
|
|
<a class="a" />
|
|
<b class={null} />
|
|
<c class={undefined} />
|
|
<d class={["a", "b", null]} />
|
|
<e class={{ a: true, b: false }} />
|
|
<e
|
|
class={[null, "x", { z: true }, [{ m: true }, null, { v: false }]]}
|
|
/>
|
|
</>,
|
|
).text,
|
|
'<a class=a></a><b></b><c></c><d class="a b"></d><e class=a></e><e class="x z m"></e>',
|
|
));
|