vatsrahul1001 commented on code in PR #59791:
URL: https://github.com/apache/airflow/pull/59791#discussion_r2651228670


##########
airflow-core/src/airflow/ui/tests/e2e/specs/backfill.spec.ts:
##########
@@ -0,0 +1,120 @@
+/*!
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { test, expect } from "@playwright/test";
+import { testConfig } from "playwright.config";
+import { BackfillPage } from "tests/e2e/pages/BackfillPage";
+
+const getPastDate = (daysAgo: number): string => {
+  const date = new Date();
+
+  date.setDate(date.getDate() - daysAgo);
+
+  return date.toISOString().slice(0, 16);
+};
+
+// Backfills E2E Tests
+
+test.describe("Backfills List Display", () => {
+  let backfillPage: BackfillPage;
+
+  const testDagId = testConfig.testDag.id;
+
+  test.beforeEach(async ({ page }) => {
+    backfillPage = new BackfillPage(page);
+
+    const fromDate = getPastDate(2);
+    const toDate = getPastDate(1);
+
+    await backfillPage.createBackfill(testDagId, {
+      fromDate,
+      reprocessBehavior: "All Runs",
+      toDate,
+    });
+
+    await backfillPage.navigateToBackfillsTab(testDagId);
+  });
+
+  test("should Verify backfills list displays (or empty state if none)", async 
() => {
+    const rowsCount = await backfillPage.getBackfillsTableRows();
+
+    if (rowsCount > 0) {

Review Comment:
    For now, skip it since we're always creating a backfill. If we want to test 
empty state in the future, we'd need a separate test that uses a DAG with no 
backfills 



-- 
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]

Reply via email to