From c8487e1457dc1b81a7f39b7d8b9fda700af78164 Mon Sep 17 00:00:00 2001 From: Lawrence Chen <54008264+lawrencecchen@users.noreply.github.com> Date: Thu, 5 Mar 2026 02:47:36 -0800 Subject: [PATCH] Stabilize notify focus regression socket detection --- cmuxUITests/MultiWindowNotificationsUITests.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmuxUITests/MultiWindowNotificationsUITests.swift b/cmuxUITests/MultiWindowNotificationsUITests.swift index 69dcf00c..4567bb63 100644 --- a/cmuxUITests/MultiWindowNotificationsUITests.swift +++ b/cmuxUITests/MultiWindowNotificationsUITests.swift @@ -218,12 +218,12 @@ final class MultiWindowNotificationsUITests: XCTestCase { XCTAssertTrue(waitForWindowCount(atLeast: 2, app: app, timeout: 6.0)) - guard let resolvedPath = resolveSocketPath(timeout: 8.0, requiredWorkspaceId: tabId2) else { + guard let resolvedPath = resolveSocketPath(timeout: 20.0, requiredWorkspaceId: tabId2) else { XCTFail("Control socket unavailable in this test environment. requested=\(socketPath)") return } socketPath = resolvedPath - let pingResponse = waitForSocketPong(timeout: 8.0) + let pingResponse = waitForSocketPong(timeout: 20.0) guard pingResponse == "PONG" else { XCTFail("Control socket did not respond in time. path=\(socketPath) response=\(pingResponse ?? "")") return