fix: resolve merge conflicts
Signed-off-by: Luka Trovic <luka@nextcloud.com>
This commit is contained in:
@@ -18,10 +18,7 @@ describe('Board', function () {
|
||||
// Click "Add board"
|
||||
cy.get('.app-navigation button.app-navigation-toggle').click()
|
||||
cy.get('#app-navigation-vue .app-navigation__list .app-navigation-entry')
|
||||
.eq(1)
|
||||
.find('a')
|
||||
.first()
|
||||
.click({force: true})
|
||||
.eq(1).find('a').first().click({force: true})
|
||||
|
||||
// Type the board title
|
||||
cy.get('.board-create form input[type=text]')
|
||||
@@ -29,12 +26,9 @@ describe('Board', function () {
|
||||
|
||||
// Submit
|
||||
cy.get('.board-create form input[type=submit]')
|
||||
.first()
|
||||
.click({force: true})
|
||||
.first().click({force: true})
|
||||
|
||||
cy.get('.app-navigation__list .app-navigation-entry__children .app-navigation-entry')
|
||||
.first()
|
||||
.contains(board)
|
||||
.should('be.visible')
|
||||
.first().contains(board).should('be.visible')
|
||||
})
|
||||
})
|
||||
@@ -21,10 +21,8 @@ describe('Card', function () {
|
||||
|
||||
cy.get('.app-navigation button.app-navigation-toggle').click()
|
||||
cy.get('#app-navigation-vue .app-navigation__list .app-navigation-entry')
|
||||
.eq(1)
|
||||
.find('.app-navigation-entry__children .app-navigation-entry a.app-navigation-entry-link')
|
||||
.first()
|
||||
.click({force: true})
|
||||
.eq(1).find('.app-navigation-entry__children .app-navigation-entry a.app-navigation-entry-link')
|
||||
.first().click({force: true})
|
||||
|
||||
cy.get('.board .stack').eq(0).within(() => {
|
||||
cy.get('button.action-item.action-item--single.icon-add')
|
||||
|
||||
@@ -14,8 +14,7 @@ describe('Deck dashboard', function() {
|
||||
|
||||
it('Can show the right title on the dashboard', function() {
|
||||
cy.get('.board-title h2')
|
||||
.should('have.length', 1)
|
||||
.first()
|
||||
.should('have.length', 1).first()
|
||||
.should('have.text', 'Upcoming cards')
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user