Change kanban task card assertion
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
kolaente 2021-01-23 17:53:20 +01:00
parent 370160c68b
commit f03a2604fe
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 4 additions and 3 deletions

View File

@ -361,9 +361,10 @@ describe('Lists', () => {
})
cy.visit('/lists/1/kanban')
cy.get('.kanban .bucket .tasks')
.should('contain', tasks[0].title)
cy.get('.kanban .bucket .tasks .task')
.contains(tasks[0].title)
.should('exist')
cy.get('.kanban .bucket .tasks .task')
.contains(tasks[0].title)
.click()