[enhance] Add rich context to RecursionError messages (#1160)

This commit is contained in:
Christian Byrne
2025-07-25 12:09:04 -07:00
committed by GitHub
parent 83795d5db1
commit 7802213887
4 changed files with 27 additions and 7 deletions

View File

@@ -1,11 +1,9 @@
import { describe, expect, it, vi } from "vitest"
import { LGraph } from "@/litegraph"
import { SubgraphNode } from "@/subgraph/SubgraphNode"
import { subgraphTest } from "./fixtures/subgraphFixtures"
import {
createEventCapture,
createTestSubgraph,
createTestSubgraphNode,
} from "./fixtures/subgraphHelpers"
@@ -427,4 +425,4 @@ describe("SubgraphMemory - Performance and Scale", () => {
expect(rootGraph.nodes.length).toBe(0)
}
})
})
})