1
0

feat(cypress): remove getSettled

This commit is contained in:
Dominik Pschenitschni
2022-12-15 18:46:19 +01:00
parent b2bf39fffa
commit 6ddfba4f1f
3 changed files with 12 additions and 46 deletions

View File

@ -421,10 +421,10 @@ describe('Task', () => {
cy.visit(`/tasks/${tasks[0].id}`)
cy.getSettled('.task-view .details.labels-list .multiselect .input-wrapper')
cy.get('.task-view .details.labels-list .multiselect .input-wrapper')
.should('be.visible')
.should('contain', labels[0].title)
cy.getSettled('.task-view .details.labels-list .multiselect .input-wrapper')
cy.get('.task-view .details.labels-list .multiselect .input-wrapper')
.children()
.first()
.get('[data-cy="taskDetail.removeLabel"]')