From e844fe3138cdb9a2fbfab6d5626f166761b45d55 Mon Sep 17 00:00:00 2001 From: Tomasz Iniewicz Date: Mon, 6 Jul 2026 12:37:25 -0400 Subject: [PATCH] fix(tests): match chat-app title assertion to renamed Agent UI title Test Electron Framework has been red on main since #1750 renamed the Agent UI window title to 'GAIA Agent UI': test_electron_chat_app.js still expected 'GAIA'. Align the assertion with the actual title (the same suite already asserts displayName 'GAIA Agent UI'). --- tests/electron/test_electron_chat_app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/electron/test_electron_chat_app.js b/tests/electron/test_electron_chat_app.js index cd65c8043..6557f5aaf 100644 --- a/tests/electron/test_electron_chat_app.js +++ b/tests/electron/test_electron_chat_app.js @@ -166,7 +166,7 @@ describe('Chat App Integration', () => { }); it('should have GAIA title', () => { - expect(htmlContent).toContain('GAIA'); + expect(htmlContent).toContain('GAIA Agent UI'); }); it('should have React root div', () => {