Skip to content

Commit

Permalink
fix: update how 2fa code is parsed in verify email (#1832)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewleith authored May 2, 2024
1 parent 91c9e33 commit 80f2a23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests_cypress/cypress/Notify/Admin/Pages/LoginPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ let Actions = {

// ensure code is received and enter it
cy.get('blockquote').should('be.visible');
cy.get('blockquote p strong').invoke('text').as('MFACode');
cy.get('blockquote p').invoke('text').as('MFACode');
cy.get('@MFACode').then((text) => {
let code = text;
cy.visit('/two-factor-email-sent');
Expand Down

0 comments on commit 80f2a23

Please sign in to comment.