From 4bfccd4c19601ee6a33634d4f140a344f66acaf5 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Fri, 13 Feb 2026 18:55:24 +0000 Subject: [PATCH] fix: refine loading completion check; exclude specific timeout progress indicators from loading detection --- tests/utils/wait-helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils/wait-helpers.ts b/tests/utils/wait-helpers.ts index cef8da40..776cee7f 100644 --- a/tests/utils/wait-helpers.ts +++ b/tests/utils/wait-helpers.ts @@ -246,7 +246,7 @@ export async function waitForLoadingComplete( // Wait for any loading indicator to disappear // Updated to be more specific and exclude pulsing UI badges const loader = page.locator([ - '[role="progressbar"]', + '[role="progressbar"]:not([aria-label*="Challenge timeout progress"])', '[aria-busy="true"]', '.loading-spinner', '.loading',