From 065dc6aa9a9aab5f610290a711de58e375820d16 Mon Sep 17 00:00:00 2001 From: kumarabhirup Date: Fri, 20 Mar 2026 10:30:41 -0700 Subject: [PATCH] =?UTF-8?q?=E2=9C=85=20TEST:=20fix=20tests=20for=20v2.3.15?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web/lib/chat-tabs.test.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/web/lib/chat-tabs.test.ts b/apps/web/lib/chat-tabs.test.ts index 73da8ac8d1a..0dff09aec3a 100644 --- a/apps/web/lib/chat-tabs.test.ts +++ b/apps/web/lib/chat-tabs.test.ts @@ -115,10 +115,12 @@ describe("chat tab helpers", () => { expect(resolveChatIdentityForTab(parent)).toEqual({ sessionId: "parent-1", subagentKey: null, + gatewaySessionKey: null, }); expect(resolveChatIdentityForTab(child)).toEqual({ sessionId: "parent-1", subagentKey: "agent:child-1:subagent:abc", + gatewaySessionKey: null, }); }); });