style: apply biome formatting fixes
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1067,7 +1067,9 @@ describe("Suite 10: Missing Root Hash Error Handling (Issue #53)", () => {
|
|||||||
await expect(renderAsync(store, fakeHash)).rejects.toThrow(
|
await expect(renderAsync(store, fakeHash)).rejects.toThrow(
|
||||||
CasNodeNotFoundError,
|
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);
|
await expect(renderAsync(store, fakeHash)).rejects.toThrow(fakeHash);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
import { renderWithTemplate } from "./liquid-render.js";
|
import { renderWithTemplate } from "./liquid-render.js";
|
||||||
import { collectRefs, getSchema, putSchema, refs } from "./schema.js";
|
import { collectRefs, getSchema, putSchema, refs } from "./schema.js";
|
||||||
import type { Hash, Store } from "./types.js";
|
import type { Hash, Store } from "./types.js";
|
||||||
import { CasNodeNotFoundError } from "./variable-store.js";
|
|
||||||
import type { VariableStore } from "./variable-store.js";
|
import type { VariableStore } from "./variable-store.js";
|
||||||
|
import { CasNodeNotFoundError } from "./variable-store.js";
|
||||||
|
|
||||||
export type RenderOptions = {
|
export type RenderOptions = {
|
||||||
resolution?: number; // (0, 1], default 1.0
|
resolution?: number; // (0, 1], default 1.0
|
||||||
|
|||||||
Reference in New Issue
Block a user