style(test): biome format

This commit is contained in:
Peter Steinberger
2025-12-12 18:07:33 +00:00
parent 37eaa49e4c
commit 9ea697ac09
2 changed files with 55 additions and 44 deletions

View File

@@ -74,7 +74,10 @@ describe("tau-rpc", () => {
expect(writes.length).toBeGreaterThan(0);
const first = writes[0]?.trim();
expect(first?.endsWith("\n")).toBe(false);
const obj = JSON.parse(first ?? "{}") as { type?: string; message?: unknown };
const obj = JSON.parse(first ?? "{}") as {
type?: string;
message?: unknown;
};
expect(obj.type).toBe("prompt");
expect(obj.message).toBe("hello");
});