Update dependency cypress to v6 (#798)

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Philip Molares <philip.molares@udo.edu>
Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
renovate[bot] 2020-11-28 11:51:40 +01:00 committed by GitHub
parent 5fa9de003c
commit a7aae1ae4a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 23 additions and 30 deletions

View file

@ -38,28 +38,17 @@ describe('Intro', () => {
})
})
describe('Version', () => {
it('can be opened', () => {
cy.get('#versionModal')
.should('not.be.visible')
cy.get('#version')
.click()
cy.get('#versionModal')
.should('be.visible')
})
it('can be closed', () => {
cy.get('#versionModal')
.should('not.be.visible')
cy.get('#version')
.click()
cy.get('#versionModal')
.should('be.visible')
cy.get('#versionModal .modal-footer .btn')
.contains('Close')
.click()
cy.get('#versionModal')
.should('not.be.visible')
})
it('Versioncan be opened and closed', () => {
cy.get('#versionModal')
.should('not.exist')
cy.get('#version')
.click()
cy.get('#versionModal')
.should('be.visible')
cy.get('#versionModal .modal-footer .btn')
.contains('Close')
.click()
cy.get('#versionModal')
.should('not.exist')
})
})