diff --git a/cypress/e2e/tests/migration/dynamic-report/dependencies/filter.test.ts b/cypress/e2e/tests/migration/dynamic-report/dependencies/filter.test.ts index bd24925a6..b4ffaf16c 100644 --- a/cypress/e2e/tests/migration/dynamic-report/dependencies/filter.test.ts +++ b/cypress/e2e/tests/migration/dynamic-report/dependencies/filter.test.ts @@ -111,7 +111,7 @@ describe(["@tier3"], "Dependency filtering", () => { }); }); - it("Running analysis and filtering dependencies by app name", function () { + it("Bug MTA-4169: Running analysis and filtering dependencies by app name", function () { Dependencies.openList(100); // Applying filter by book server app and validating no dependencies of day trader app showed up Dependencies.applyAndValidateFilter( @@ -132,7 +132,7 @@ describe(["@tier3"], "Dependency filtering", () => { clearAllFilters(); }); - it("Filtering dependencies by Archetype", function () { + it("Bug MTA-4169: Filtering dependencies by Archetype", function () { Dependencies.applyFilter(dependencyFilter.archetype, archetype.name); this.analysisData["source_analysis_on_bookserverapp"]["dependencies"].forEach( (dependency: AppDependency) => { @@ -142,7 +142,7 @@ describe(["@tier3"], "Dependency filtering", () => { clearAllFilters(); }); - it("Filtering dependencies by BS", function () { + it("Bug MTA-4169: Filtering dependencies by BS", function () { Dependencies.applyFilter(dependencyFilter.bs, businessServiceList[0].name); this.analysisData["source_analysis_on_bookserverapp"]["dependencies"].forEach( (dependency: AppDependency) => { @@ -152,7 +152,7 @@ describe(["@tier3"], "Dependency filtering", () => { clearAllFilters(); }); - it("Filtering dependencies by tags", function () { + it("Bug MTA-4169: Filtering dependencies by tags", function () { tagNames.forEach((currentTag: string) => { Dependencies.applyFilter(dependencyFilter.tags, currentTag); this.analysisData["source_analysis_on_bookserverapp"]["dependencies"].forEach( @@ -164,7 +164,7 @@ describe(["@tier3"], "Dependency filtering", () => { }); }); - it("Filtering dependencies by dependency name", function () { + it("Bug MTA-4169: Filtering dependencies by dependency name", function () { this.analysisData["source_analysis_on_bookserverapp"]["dependencies"].forEach( (dependency: AppDependency) => { Dependencies.applyFilter(dependencyFilter.deppName, dependency.name); @@ -179,7 +179,7 @@ describe(["@tier3"], "Dependency filtering", () => { clearAllFilters(); }); - it("Filtering dependencies by dependency language", function () { + it("Bug MTA-4169: Filtering dependencies by dependency language", function () { this.analysisData["source_analysis_on_bookserverapp"]["dependencies"].forEach( (dependency: AppDependency) => { Dependencies.applyFilter(dependencyFilter.language, dependency.language); @@ -194,7 +194,7 @@ describe(["@tier3"], "Dependency filtering", () => { clearAllFilters(); }); - it("Validate dependencies filter is applied when drilling down from application page", function () { + it("Bug MTA-4169: Validate dependencies filter is applied when drilling down from application page", function () { // Validation of bug https://issues.redhat.com/browse/MTA-2008 Analysis.open(); bookServerApp.applicationDetailsTab("Details"); diff --git a/cypress/e2e/tests/migration/dynamic-report/dependencies/sort.test.ts b/cypress/e2e/tests/migration/dynamic-report/dependencies/sort.test.ts index e4ba69a4b..7389babcd 100644 --- a/cypress/e2e/tests/migration/dynamic-report/dependencies/sort.test.ts +++ b/cypress/e2e/tests/migration/dynamic-report/dependencies/sort.test.ts @@ -41,7 +41,7 @@ describe(["@tier3"], "Dependencies sort validations", function () { }); sortByList.forEach((column) => { - it(`Sort dependencies by ${column}`, function () { + it(`Bug MTA-4169: Sort dependencies by ${column}`, function () { Dependencies.openList(); validateSortBy(column); });