style: biome formatting

This commit is contained in:
Peter Steinberger
2025-12-20 17:50:45 +01:00
parent 0f271ab535
commit e618a21f4e
7 changed files with 31 additions and 23 deletions

View File

@@ -1,17 +1,17 @@
import { createServer } from "node:http";
import { type AddressInfo } from "node:net";
import fs from "node:fs/promises";
import { createServer } from "node:http";
import type { AddressInfo } from "node:net";
import os from "node:os";
import path from "node:path";
import { describe, expect, it } from "vitest";
import { WebSocket } from "ws";
import { defaultRuntime } from "../runtime.js";
import { createCanvasHostHandler, startCanvasHost } from "./server.js";
import {
CANVAS_HOST_PATH,
CANVAS_WS_PATH,
injectCanvasLiveReload,
} from "./a2ui.js";
import { createCanvasHostHandler, startCanvasHost } from "./server.js";
describe("canvas host", () => {
it("injects live reload script", () => {
@@ -80,9 +80,7 @@ describe("canvas host", () => {
const port = (server.address() as AddressInfo).port;
try {
const res = await fetch(
`http://127.0.0.1:${port}${CANVAS_HOST_PATH}/`,
);
const res = await fetch(`http://127.0.0.1:${port}${CANVAS_HOST_PATH}/`);
const html = await res.text();
expect(res.status).toBe(200);
expect(html).toContain("v1");

View File

@@ -48,7 +48,11 @@ export type CanvasHostHandler = {
req: IncomingMessage,
res: ServerResponse,
) => Promise<boolean>;
handleUpgrade: (req: IncomingMessage, socket: Socket, head: Buffer) => boolean;
handleUpgrade: (
req: IncomingMessage,
socket: Socket,
head: Buffer,
) => boolean;
close: () => Promise<void>;
};