Files
deck/cypress/integration/boardTitle.js
Luka Trovic 37b3f03809 fix: resolve merge conflicts
Signed-off-by: Luka Trovic <luka@nextcloud.com>
2022-05-09 11:51:39 +01:00

13 lines
276 B
JavaScript

describe('Files default view', function() {
beforeEach(function() {
cy.login('admin', 'admin')
})
it('See the board title', function() {
cy.get('.board-title h2')
.should('have.length', 1)
.first()
.should('have.text', 'Upcoming cards')
})
})