From 33b705a9356d090363b85972793a0a751b61d1d8 Mon Sep 17 00:00:00 2001 From: Abhimanyu Saharan Date: Wed, 25 Feb 2026 02:59:15 +0530 Subject: [PATCH] test(e2e): remove force click for edit-task actionability --- frontend/cypress/e2e/board_tasks.cy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/cypress/e2e/board_tasks.cy.ts b/frontend/cypress/e2e/board_tasks.cy.ts index cc397e71..567523a0 100644 --- a/frontend/cypress/e2e/board_tasks.cy.ts +++ b/frontend/cypress/e2e/board_tasks.cy.ts @@ -38,7 +38,7 @@ describe("/boards/:id task board", () => { cy.get('button[title="Edit task"]', { timeout: 20_000 }) .should("be.visible") .and("not.be.disabled") - .click({ force: true }); + .click(); cy.get('[aria-label="Edit task"]', { timeout: 20_000 }).should("be.visible"); }