From 1678d82a69399f8bcc24aa352ccdf5f1fbadadf5 Mon Sep 17 00:00:00 2001 From: Ejaaz Khan Date: Wed, 10 Dec 2025 11:01:09 +0530 Subject: [PATCH] test: remove optional delete anban test case --- cypress/integration/kanban.js | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/cypress/integration/kanban.js b/cypress/integration/kanban.js index 5bba4adae7..f4834450e2 100644 --- a/cypress/integration/kanban.js +++ b/cypress/integration/kanban.js @@ -4,28 +4,6 @@ context("Kanban Board", () => { cy.visit("/desk"); }); - it("Delete ToDo Kanban from list view if it exists", () => { - cy.go_to_list("Kanban Board"); - - cy.get(".list-row-container").should("exist"); - - cy.get(".list-row-container").then(($list_row) => { - cy.contains(".list-row-container", "ToDo Kanban").then(($row) => { - if (!$row.length) { - cy.log("ToDo Kanban does not exist — skipping delete."); - return; - } - - cy.wrap($row).find(".list-row-checkbox").check({ force: true }); - - cy.get(".actions-btn-group > .btn").contains("Actions").click(); - cy.get('.actions-btn-group > .dropdown-menu [data-label="Delete"]').click(); - - cy.click_modal_primary_button("Yes"); - }); - }); - }); - it("Create ToDo Kanban", () => { cy.visit("/desk/todo");