prepare for depoyment

This commit is contained in:
2025-11-22 21:12:02 -05:00
parent d2d654dfda
commit d0db8e5076
7 changed files with 51 additions and 32 deletions

View File

@@ -87,7 +87,7 @@ describe("DefaultHashFunction", () => {
});
it("should handle circular references gracefully", () => {
const circular: any = { name: "test" };
const circular: { name: string; self?: unknown } = { name: "test" };
circular.self = circular; // Create circular reference
// Should not throw, should fall back to Object.prototype.toString