Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2020-11-17 08:14:49 +01:00
Родитель baa900546c
Коммит c341aa215b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4C614C6ED2CDE6DF
1 изменённых файлов: 8 добавлений и 8 удалений

Просмотреть файл

@ -49,21 +49,21 @@ describe('Open test.md in viewer', function() {
it('Open the viewer on file click', function() {
cy.visit('/apps/files')
cy.openFile('test.md')
cy.get('#viewer-content').should('be.visible')
cy.get('#viewer-content .modal-title').should('contain', 'test.md')
cy.get('#viewer-content .modal-header button.icon-menu-sidebar-white-forced').should('be.visible')
cy.get('#viewer-content .modal-header button.icon-close').should('be.visible')
cy.get('#viewer').should('be.visible')
cy.get('#viewer .modal-title').should('contain', 'test.md')
cy.get('#viewer .modal-header button.icon-menu-sidebar-white-forced').should('be.visible')
cy.get('#viewer .modal-header button.icon-close').should('be.visible')
cy.wait(2000)
cy.get('#viewer-content', { timeout: 4000 })
cy.get('#viewer', { timeout: 4000 })
.should('be.visible')
.and('have.class', 'modal-mask')
.and('not.have.class', 'icon-loading')
})
it('Has opened the file', function() {
cy.get('#viewer-content #editor .ProseMirror').should('contain', 'Hello world')
cy.get('#viewer-content #editor .ProseMirror h2').should('contain', 'Hello world')
cy.get('#viewer #editor .ProseMirror').should('contain', 'Hello world')
cy.get('#viewer #editor .ProseMirror h2').should('contain', 'Hello world')
})
it('Shows the menu bar icons', function() {
@ -76,7 +76,7 @@ describe('Open test.md in viewer', function() {
it('Closes the editor', function() {
cy.get('.modal-header button.icon-close').click()
cy.get('#viewer-content').should('not.be.visible')
cy.get('#viewer').should('not.be.visible')
})
it('Take screenshot', function() {