choo121600 commented on code in PR #59738:
URL: https://github.com/apache/airflow/pull/59738#discussion_r2684881140
##########
airflow-core/src/airflow/ui/tests/e2e/pages/BackfillPage.ts:
##########
@@ -80,6 +82,8 @@ export class BackfillPage extends BasePage {
this.backfillRunButton = page.locator('button:has-text("Run Backfill")');
this.backfillsTable = page.locator("table");
this.backfillDateError = page.locator('text="Start Date must be before the
End Date"');
+ this.cancelButton = page.locator('button[aria-label="Cancel backfill"]');
+ this.pauseButton = page.locator('button[aria-label="Pause backfill"],
button[aria-label="Unpause backfill"]');
Review Comment:
```suggestion
this.cancelButton = page.locator('button[aria-label="Cancel backfill"]');
this.pauseButton = page.locator(
'button[aria-label="Pause backfill"], button[aria-label="Unpause
backfill"]',
);
```
##########
airflow-core/src/airflow/ui/tests/e2e/pages/BackfillPage.ts:
##########
@@ -80,6 +82,8 @@ export class BackfillPage extends BasePage {
this.backfillRunButton = page.locator('button:has-text("Run Backfill")');
this.backfillsTable = page.locator("table");
this.backfillDateError = page.locator('text="Start Date must be before the
End Date"');
+ this.cancelButton = page.locator('button[aria-label="Cancel backfill"]');
+ this.pauseButton = page.locator('button[aria-label="Pause backfill"],
button[aria-label="Unpause backfill"]');
Review Comment:
It looks like the static check is failing at this point.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]