fix: resolve merge conflicts

Signed-off-by: Luka Trovic <luka@nextcloud.com>
This commit is contained in:
Luka Trovic
2022-05-09 11:51:39 +01:00
parent 43540b008c
commit 37b3f03809
8 changed files with 2756 additions and 220 deletions

View File

@@ -0,0 +1,12 @@
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')
})
})