From 1a1c0c8170881c9b909003e375d5a1935f00d0a6 Mon Sep 17 00:00:00 2001 From: kolaente Date: Thu, 17 Jul 2025 11:14:20 +0200 Subject: [PATCH] fix(cypress): assert visibility to make the test less flakey (#1138) --- frontend/cypress/e2e/task/task.spec.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/cypress/e2e/task/task.spec.ts b/frontend/cypress/e2e/task/task.spec.ts index 19cd60ac7..0d8f4b225 100644 --- a/frontend/cypress/e2e/task/task.spec.ts +++ b/frontend/cypress/e2e/task/task.spec.ts @@ -421,6 +421,7 @@ describe('Task', () => { cy.get('.task-view .column.assignees .multiselect input') .type(users[1].username) cy.get('.task-view .column.assignees .multiselect .search-results') + .should('be.visible') .children() .first() .click()