Compare commits

..

1 Commits

Author SHA1 Message Date
Dominik Pschenitschni 73bfd43560
feat: create BaseCheckbox
continuous-integration/drone/pr Build is failing Details
2022-09-08 19:28:09 +02:00
3 changed files with 6 additions and 5 deletions

View File

@ -20,10 +20,10 @@ describe('List View Table', () => {
cy.get('.list-table .filter-container .items .button')
.contains('Columns')
.click()
cy.get('.list-table .filter-container .card.columns-filter .card-content .fancycheckbox')
cy.get('.list-table .filter-container .card.columns-filter .card-content .fancycheckbox .label')
.contains('Priority')
.click()
cy.get('.list-table .filter-container .card.columns-filter .card-content .fancycheckbox')
cy.get('.list-table .filter-container .card.columns-filter .card-content .fancycheckbox .label')
.contains('Done')
.click()

View File

@ -120,7 +120,7 @@ describe('Namepaces', () => {
.should('not.contain', 'Archived')
// Show archived
cy.get('[data-cy="show-archived-check"] .label span')
cy.get('[data-cy="show-archived-check"] label.check span')
.should('be.visible')
.click()
cy.get('[data-cy="show-archived-check"] input')
@ -129,7 +129,7 @@ describe('Namepaces', () => {
.should('contain', 'Archived')
// Don't show archived
cy.get('[data-cy="show-archived-check"] .label span')
cy.get('[data-cy="show-archived-check"] label.check span')
.should('be.visible')
.click()
cy.get('[data-cy="show-archived-check"] input')

View File

@ -59,7 +59,8 @@ describe('Task', () => {
TaskFactory.create(1)
cy.visit('/lists/1/list')
cy.get('.tasks .task .fancycheckbox')
cy.get('.tasks .task .fancycheckbox .label')
.first()
.click()
cy.get('.global-notification')
.should('contain', 'Success')