From d2e49ac1107d419619f7d3e458aa867918a90ac2 Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Fri, 18 Jul 2025 13:29:08 +1000 Subject: [PATCH] [Test] Uncomment test - already working as expected (#1131) --- test/subgraph/SubgraphNode.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/subgraph/SubgraphNode.test.ts b/test/subgraph/SubgraphNode.test.ts index f3f895d77..3d0112eaf 100644 --- a/test/subgraph/SubgraphNode.test.ts +++ b/test/subgraph/SubgraphNode.test.ts @@ -336,7 +336,7 @@ describe("SubgraphNode Execution", () => { expect(resolved === undefined || typeof resolved === "object").toBe(true) }) - it.todo("should prevent infinite recursion", () => { + it("should prevent infinite recursion", () => { // TODO: This test is currently skipped because cycle detection has a bug // The fix is to pass 'visited' directly instead of 'new Set(visited)' in SubgraphNode.ts:299 const subgraph = createTestSubgraph({ nodeCount: 1 })