Skip to content

Commit

Permalink
last fix tests for smoke pull
Browse files Browse the repository at this point in the history
  • Loading branch information
Celiant committed Jan 23, 2025
1 parent c1992e5 commit 4021493
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ context("Contracts", { tags: ['contracts', 'firstPool', 'all'] }, () => {
retireRequestId = response.body.at(0).id;
})
})
})
});

it("Approve retire request without auth token - Negative", () => {
cy.request({
Expand Down Expand Up @@ -510,7 +510,7 @@ context("Contracts", { tags: ['contracts', 'firstPool', 'all'] }, () => {
});
});

it("Approve retire request", { tags: ['smoke'] }, () => {
it("Approve retire request", () => {
Authorization.getAccessToken(SRUsername).then((authorization) => {
cy.request({
method: METHOD.POST,
Expand Down Expand Up @@ -549,7 +549,7 @@ context("Contracts", { tags: ['contracts', 'firstPool', 'all'] }, () => {
expect(response.status).eql(STATUS_CODE.OK);
})
})
})
});

it("Create retire request", { tags: ['smoke'] }, () => {
Authorization.getAccessToken(UserUsername).then((authorization) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ context("Tags", { tags: ['tags', 'thirdPool', 'all'] }, () => {
schemaId = response.body.at(0).id;
})
})
})
});

it("Publish the schema with the provided (internal) schema ID", { tags: ['smoke'] }, () => {
it("Publish the schema with the provided (internal) schema ID", () => {
//publish tag schema
Authorization.getAccessToken(SRUsername).then((authorization) => {
cy.request({
Expand All @@ -36,5 +36,5 @@ context("Tags", { tags: ['tags', 'thirdPool', 'all'] }, () => {
expect(response.status).to.eq(STATUS_CODE.OK);
});
})
})
});
})

0 comments on commit 4021493

Please sign in to comment.