style: apply biome formatting fixes

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-31 08:21:10 +00:00
parent eb36c16420
commit 0b72c9400f
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -1067,7 +1067,9 @@ describe("Suite 10: Missing Root Hash Error Handling (Issue #53)", () => {
await expect(renderAsync(store, fakeHash)).rejects.toThrow(
CasNodeNotFoundError,
);
await expect(renderAsync(store, fakeHash)).rejects.toThrow("Node not found");
await expect(renderAsync(store, fakeHash)).rejects.toThrow(
"Node not found",
);
await expect(renderAsync(store, fakeHash)).rejects.toThrow(fakeHash);
});
+1 -1
View File
@@ -1,8 +1,8 @@
import { renderWithTemplate } from "./liquid-render.js";
import { collectRefs, getSchema, putSchema, refs } from "./schema.js";
import type { Hash, Store } from "./types.js";
import { CasNodeNotFoundError } from "./variable-store.js";
import type { VariableStore } from "./variable-store.js";
import { CasNodeNotFoundError } from "./variable-store.js";
export type RenderOptions = {
resolution?: number; // (0, 1], default 1.0