diff --git a/e2e-tests/cypress/e2e/api-tests/013_contracts/013_createApproveAndRejectRetireRequests.cy.js b/e2e-tests/cypress/e2e/api-tests/013_contracts/013_createApproveAndRejectRetireRequests.cy.js index 68ffeccb06..b359b4fbdb 100644 --- a/e2e-tests/cypress/e2e/api-tests/013_contracts/013_createApproveAndRejectRetireRequests.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/013_contracts/013_createApproveAndRejectRetireRequests.cy.js @@ -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({ @@ -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, @@ -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) => { diff --git a/e2e-tests/cypress/e2e/api-tests/014_tags/03_putPublishTagSchema.cy.js b/e2e-tests/cypress/e2e/api-tests/014_tags/03_putPublishTagSchema.cy.js index 838c94a75e..b35e1da558 100644 --- a/e2e-tests/cypress/e2e/api-tests/014_tags/03_putPublishTagSchema.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/014_tags/03_putPublishTagSchema.cy.js @@ -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({ @@ -36,5 +36,5 @@ context("Tags", { tags: ['tags', 'thirdPool', 'all'] }, () => { expect(response.status).to.eq(STATUS_CODE.OK); }); }) - }) + }); })