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 Nov 22, 2024
1 parent 2dfbb74 commit 6f6066d
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 @@ -56,6 +56,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 6f6066d

Please sign in to comment.