Signed-off-by: Vinicius Reis <vinicius.reis@nextcloud.com>
This commit is contained in:
Vinicius Reis 2022-06-08 18:33:53 -03:00 коммит произвёл Julius Härtl
Родитель 36e497deb8
Коммит 00d508bac3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4C614C6ED2CDE6DF
1 изменённых файлов: 26 добавлений и 0 удалений

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

@ -105,4 +105,30 @@ describe('Image View', () => {
})
})
})
describe('fail to load', () => {
it.only('direct access', () => {
const fileName = `${Cypress.currentTest.title}.md`
createMarkdown(fileName, '# from root\n\n ![yaha](/yaha.png)')
cy.openFile(fileName)
cy.getEditor()
.find('[data-component="image-view"]')
.should('have.class', 'image-view--failed')
cy.getEditor()
.find('[data-component="image-view"] svg')
.should('be.visible')
cy.getEditor()
.find('[data-component="image-view"] .image__error-message')
.should('be.visible')
cy.getEditor()
.find('[data-component="image-view"] .image__caption input')
.should('have.value', 'yaha')
})
})
})