Skip to content

Commit 3e2684c

Browse files
itomekTomasz Iniewicz
andauthored
fix(tests): match chat-app title assertion to renamed Agent UI title (amd#1927)
"Test Electron Framework" has been red on main and every PR since 2026-06-22: amd#1750 renamed the Agent UI window title to "GAIA Agent UI", but `test_electron_chat_app.js` still expects `<title>GAIA</title>`. This aligns the assertion with the actual title — the same suite already asserts `displayName: 'GAIA Agent UI'`, so the rename was clearly intentional. Unblocks the check on Dependabot PRs amd#1803, amd#1805, amd#1861 among others. ## Test plan - [x] `npx jest test_electron_chat_app.js` locally: 196/196 pass with the fix (previously 195/196) - [ ] "Test Electron Framework" green on this PR Co-authored-by: Tomasz Iniewicz <tomasz@iniewicz.com>
1 parent 73666ae commit 3e2684c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/electron/test_electron_chat_app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ describe('Chat App Integration', () => {
166166
});
167167

168168
it('should have GAIA title', () => {
169-
expect(htmlContent).toContain('<title>GAIA</title>');
169+
expect(htmlContent).toContain('<title>GAIA Agent UI</title>');
170170
});
171171

172172
it('should have React root div', () => {

0 commit comments

Comments
 (0)