Skip to content

Commit

Permalink
Dependency update - cypress 13
Browse files Browse the repository at this point in the history
  • Loading branch information
jardakotesovec committed Nov 27, 2024
1 parent 9c00d40 commit 0bbafdb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cypress/support/commands_new_workflow.js
Original file line number Diff line number Diff line change
Expand Up @@ -910,7 +910,9 @@ Cypress.Commands.add('changeLanguage', (language, contextPath) => {

Cypress.Commands.add('confirmEmail', user => {
// Current email server is sendra https://github.com/msztolcman/sendria
let emailServer = 'http://localhost:1080/';
// Intentionally trying 127.0.0.1 instead of localhost as at least on mac localhost
// did not work - https://github.com/cypress-io/cypress/issues/26154#issuecomment-1755904773
let emailServer = 'http://127.0.0.1:1080/';

cy.visit(emailServer);
cy.get('#messages').contains(user.username + '@mailinator.com').first().click();
Expand Down

0 comments on commit 0bbafdb

Please sign in to comment.