Skip to content

Commit

Permalink
increase timeout time for ipfs request
Browse files Browse the repository at this point in the history
  • Loading branch information
Celiant committed Jan 17, 2025
1 parent b68cc40 commit d5da708
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ context("Modules", { tags: ['modules', 'thirdPool', 'all'] }, () => {
headers: {
authorization,
},
timeout: 180000
timeout: 600000
}).then((response) => {
expect(response.status).eql(STATUS_CODE.OK);
expect(response.body).to.be.not.eql("");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ context("Policies", { tags: ['policies', 'secondPool', 'all'] }, () => {
headers: {
authorization,
},
timeout: 180000,
timeout: 600000,
}).then((response) => {
expect(response.status).to.eq(STATUS_CODE.SUCCESS);
policyId = response.body.at(0).id;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ context("Schemas", { tags: ['policies', 'secondPool', 'all'] }, () => {
body: {
"messageId": "1707125414.999819805"
},
timeout: 600000
}).then((response) => {
expect(response.status).to.eq(STATUS_CODE.ACCEPTED);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ context("Schemas", { tags: ['schema', 'thirdPool', 'all'] }, () => {
body: {
messageId: Cypress.env("schema_for_import"),
},
timeout: 180000
timeout: 600000
}).then((response) => {
expect(response.status).eql(STATUS_CODE.SUCCESS);
expect(response.body).to.not.be.oneOf([null, ""]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ context("Contracts", { tags: ['contracts', 'firstPool', 'all'] }, () => {
});

it("Verify roles(wipe)", () => {
cy.wait(180000)
cy.wait(300000)
Authorization.getAccessToken(SR2Username).then((authorization) => {
cy.request({
method: METHOD.GET,
Expand Down

0 comments on commit d5da708

Please sign in to comment.