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

@ -40,6 +40,8 @@ describe('profile page', () => {
})
it('delete token', () => {
cy.get('.modal-dialog')
.should('not.exist')
cy.get('.card.access-tokens .list-group-item .btn-danger')
.click()
cy.get('.modal-dialog')
@ -47,7 +49,7 @@ describe('profile page', () => {
.get('.modal-footer .btn-danger')
.click()
cy.get('.modal-dialog')
.should('not.be.visible')
.should('not.exist')
})
it('add token', () => {
@ -55,6 +57,8 @@ describe('profile page', () => {
.should('be.disabled')
cy.get('.card.access-tokens input[type=text]')
.type('cypress')
cy.get('.modal-dialog')
.should('not.exist')
cy.get('.card.access-tokens .btn-primary')
.should('not.be.disabled')
.click()