This is an automated email from the ASF dual-hosted git repository.

bbovenzi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 03a6b85690e Avoid retrying XCom expand actions (#72305)
03a6b85690e is described below

commit 03a6b85690eb85074f08b4e36da53423fc5fcebd
Author: huyua9 <[email protected]>
AuthorDate: Thu Sep 10 01:50:34 2026 +0800

    Avoid retrying XCom expand actions (#72305)
    
    Co-authored-by: ming <[email protected]>
---
 airflow-core/src/airflow/ui/tests/e2e/pages/XComsPage.ts | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/airflow-core/src/airflow/ui/tests/e2e/pages/XComsPage.ts 
b/airflow-core/src/airflow/ui/tests/e2e/pages/XComsPage.ts
index 30e5b8b2f8f..a3ab42c41cf 100644
--- a/airflow-core/src/airflow/ui/tests/e2e/pages/XComsPage.ts
+++ b/airflow-core/src/airflow/ui/tests/e2e/pages/XComsPage.ts
@@ -101,10 +101,9 @@ export class XComsPage extends BasePage {
   public async verifyExpandCollapse(): Promise<void> {
     await this.navigate();
 
-    await expect(async () => {
-      await this.expandAllButton.first().click({ timeout: 5000 });
-      await expect(this.collapseAllButton.first()).toBeVisible({ timeout: 3000 
});
-    }).toPass({ intervals: [2000], timeout: 15_000 });
+    await expect(this.expandAllButton.first()).toBeVisible({ timeout: 5000 });
+    await this.expandAllButton.first().click();
+    await expect(this.collapseAllButton.first()).toBeVisible({ timeout: 15_000 
});
 
     await this.collapseAllButton.first().click();
   }

Reply via email to