34 lines
967 B
JavaScript
34 lines
967 B
JavaScript
import assert from "node:assert/strict";
|
|
import test from "node:test";
|
|
|
|
const developmentPreviewMeta =
|
|
/<meta(?=[^>]*\bname=["']codex-preview["'])(?=[^>]*\bcontent=["']development["'])[^>]*>/i;
|
|
|
|
test("renders development preview metadata", async () => {
|
|
const workerUrl = new URL("../dist/server/index.js", import.meta.url);
|
|
workerUrl.searchParams.set("test", `${process.pid}-${Date.now()}`);
|
|
const { default: worker } = await import(workerUrl.href);
|
|
|
|
const response = await worker.fetch(
|
|
new Request("http://localhost/", {
|
|
headers: { accept: "text/html" },
|
|
}),
|
|
{
|
|
ASSETS: {
|
|
fetch: async () => new Response("Not found", { status: 404 }),
|
|
},
|
|
},
|
|
{
|
|
waitUntil() {},
|
|
passThroughOnException() {},
|
|
},
|
|
);
|
|
|
|
assert.equal(response.status, 200);
|
|
assert.match(
|
|
response.headers.get("content-type") ?? "",
|
|
/^text\/html\b/i,
|
|
);
|
|
assert.match(await response.text(), developmentPreviewMeta);
|
|
});
|