Skip to content

Commit

Permalink
(BSR)[PRO] test: timeout 60 secs for request to get email
Browse files Browse the repository at this point in the history
  • Loading branch information
scolson-pass committed Dec 13, 2024
1 parent 1aa62d0 commit dbff2ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions pro/cypress/e2e/collaborator.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ describe('Collaborator list feature', () => {
cy.request({
method: 'GET',
url: 'http://localhost:5001/sandboxes/get_unique_email',
timeout: 60000
}).then((response) => {
expect(response.status).to.eq(200)
expect(response.body.To).to.eq(randomEmail)
Expand Down
2 changes: 1 addition & 1 deletion pro/cypress/e2e/createAccount.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ describe('Account creation', () => {
cy.request({
method: 'GET',
url: 'http://localhost:5001/sandboxes/get_unique_email',
// failOnStatusCode: false,
timeout: 60000
}).then((response) => {
expect(response.status).to.eq(200)
expect(response.body.To).to.eq(randomEmail)
Expand Down

0 comments on commit dbff2ca

Please sign in to comment.