diff --git a/.vib/phpmyadmin/cypress/cypress/support/commands.js b/.vib/phpmyadmin/cypress/cypress/support/commands.js index f1c0f38d515192..bfe18e20b4e088 100644 --- a/.vib/phpmyadmin/cypress/cypress/support/commands.js +++ b/.vib/phpmyadmin/cypress/cypress/support/commands.js @@ -21,7 +21,7 @@ Cypress.Commands.add( 'login', (username = Cypress.env('username'), password = Cypress.env('password')) => { cy.visit('/'); - cy.contains('Log in'); + cy.contains('Log in', {timeout: 60000}); cy.get('#input_username').type(username); cy.get('#input_password').type(password); cy.contains('input', 'Log in').click();