Skip to content

Commit

Permalink
test dupe fix
Browse files Browse the repository at this point in the history
duplicate verifyCPOCNameDoesNotExists.
  • Loading branch information
Valencia2019 committed Sep 21, 2023
1 parent a357f8d commit 33e8ddc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/cypress/cypress/e2e/common/steps.js
Original file line number Diff line number Diff line change
Expand Up @@ -3079,7 +3079,7 @@ Then("verify the CPOC has a value displayed in the details section", () => {
OneMacPackageDetailsPage.verifyCPOCNameValueExists();
});
Then("verify CPOC is not visible in the details section", () => {
OneMacPackageDetailsPage.verifyCPOCNameDoesNotExists();
OneMacPackageDetailsPage.verifyCPOCNameDoesNotExist();
});
Then("verify there is a Review Team SRT header in the details section", () => {
OneMacPackageDetailsPage.verifyReviewTeamSRTHeaderExists();
Expand Down
5 changes: 1 addition & 4 deletions tests/cypress/support/pages/oneMacPackageDetailsPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ export class oneMacPackageDetailsPage {
.next("div")
.contains(/^(?!\s*$).+/);
}
verifyCPOCNameDoesNotExists() {
verifyCPOCNameDoesNotExist() {
cy.xpath(cPOCNameHeader).should("not.exist");
}
verifyReviewTeamSRTHeaderExists() {
Expand All @@ -456,9 +456,6 @@ export class oneMacPackageDetailsPage {
verifyReviewTeamSRTDoesNotExists() {
cy.xpath(reviewTeamSRTHeader).should("not.exist");
}
verifyCPOCNameDoesNotExists() {
cy.xpath(cPOCNameHeader).should("not.exist");
}
verifyFormalRAIResponseCaretBtnExists() {
cy.xpath(formalRAIResponseCaretBtn).should("be.visible");
}
Expand Down

0 comments on commit 33e8ddc

Please sign in to comment.