From 27865278dac4645b3fdfcd26647fa46dc0780af2 Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Tue, 22 Jul 2025 10:35:35 -0700 Subject: [PATCH] [test] Remove misleading createNode todo test (#1147) --- test/subgraph/Subgraph.test.ts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/test/subgraph/Subgraph.test.ts b/test/subgraph/Subgraph.test.ts index 1515e8f95..af3c7d6b8 100644 --- a/test/subgraph/Subgraph.test.ts +++ b/test/subgraph/Subgraph.test.ts @@ -189,16 +189,6 @@ describe("Subgraph Serialization", () => { }) describe("Subgraph Known Issues", () => { - it.todo("should document createNode() bug returns null", () => { - // This test documents the known issue where LiteGraph.createNode(subgraph.id) - // returns null because UUID is not registered as a node type. - // - // Expected behavior: Should create a SubgraphNode instance - // Actual behavior: Returns null, causing convertToSubgraph() to fail - // - // This needs to be fixed in the LiteGraphGlobal registration system. - }) - it.todo("should enforce MAX_NESTED_SUBGRAPHS limit", () => { // This test documents that MAX_NESTED_SUBGRAPHS = 1000 is defined // but not actually enforced anywhere in the code.