Skip to content

Commit

Permalink
ci: Fix selector for viewer modal name
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Härtl <[email protected]>
  • Loading branch information
juliushaertl authored and mejo- committed Sep 16, 2024
1 parent dcfea0e commit 141cc04
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/nodes/Links.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,15 +160,15 @@ describe('test link marks', function() {
cy.getFile(fileName)
.then($el => {
checkLinkFile(fileName)
cy.get('.modal-name').should('include.text', fileName)
cy.get('.modal-header__name').should('include.text', fileName)
})
})
it('with selected text', () => {
cy.getFile(fileName)
.then($el => {
cy.getContent().type(`${text}{selectAll}`)
checkLinkFile(fileName, text)
cy.get('.modal-name').should('include.text', fileName)
cy.get('.modal-header__name').should('include.text', fileName)
})
})
it('link to directory', () => {
Expand Down
4 changes: 2 additions & 2 deletions cypress/e2e/viewer.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ describe('Open test.md in viewer', function() {
.and('have.class', 'modal-mask')
.and('not.have.class', 'icon-loading')
getViewer()
.find('.modal-name').should('contain', 'test.md')
.find('.modal-header__name').should('contain', 'test.md')
getViewer()
.find('.modal-header button.action-item__menutoggle')
.should('be.visible')
Expand All @@ -72,7 +72,7 @@ describe('Open test.md in viewer', function() {
.and('have.class', 'modal-mask')
.and('not.have.class', 'icon-loading')
getViewer()
.find('.modal-name').should('contain', 'empty.md')
.find('.modal-header__name').should('contain', 'empty.md')
getViewer()
.find('.modal-header button.action-item__menutoggle')
.should('be.visible')
Expand Down

0 comments on commit 141cc04

Please sign in to comment.