Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RFR] Mark Product Bug #1192

Merged
merged 1 commit into from
Aug 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import {
} from "../../../../views/applicationinventory.view";
import { helper } from "../../../../views/common.view";

var applicationsList: Array<Application> = [];
let applicationsList: Array<Application> = [];

describe(["@tier3"], "Manage application dependencies", () => {
before("Login and Create Test Data", function () {
Expand All @@ -34,8 +34,8 @@ describe(["@tier3"], "Manage application dependencies", () => {
});

it("Non-cyclic dependencies for applications", function () {
var northboundApps: Array<string> = [applicationsList[0].name];
var southboundApps: Array<string> = [applicationsList[2].name];
const northboundApps: Array<string> = [applicationsList[0].name];
const southboundApps: Array<string> = [applicationsList[2].name];

// Add northbound and southbound dependencies for 2nd app from list
applicationsList[1].addDependencies(northboundApps, southboundApps);
Expand All @@ -51,8 +51,8 @@ describe(["@tier3"], "Manage application dependencies", () => {
});

it("Bug MTA-2789: Cyclic dependencies for applications", function () {
var northboundApps: Array<string> = [applicationsList[0].name];
var southboundApps: Array<string> = [applicationsList[2].name];
const northboundApps: Array<string> = [applicationsList[0].name];
const southboundApps: Array<string> = [applicationsList[2].name];

// Add northbound and southbound dependencies for 2nd app from list
applicationsList[1].addDependencies(northboundApps, southboundApps);
Expand All @@ -76,7 +76,7 @@ describe(["@tier3"], "Manage application dependencies", () => {
click(closeForm);
});

after("Perform test data clean up", function () {
after("Bug MTA-2789: Perform test data clean up", function () {
Application.open(true);
deleteByList(applicationsList);
});
Expand Down
Loading