Skip to content

Commit f736e05

Browse files
jardakotesovecGaziYucel
authored andcommitted
Dependency update - cypress 13
1 parent 8b9266f commit f736e05

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: cypress/support/commands_new_workflow.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -910,7 +910,9 @@ Cypress.Commands.add('changeLanguage', (language, contextPath) => {
910910

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

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

0 commit comments

Comments
 (0)