Skip to content

Commit

Permalink
bring back binary analysis test (#759)
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro Brugarolas <[email protected]>
  • Loading branch information
abrugaro authored Oct 23, 2023
1 parent b40e292 commit e736061
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ export class Analysis extends Application {
if (!this.sources) {
next();
}
next();
clickByText(button, "Run");
}

public static analyzeAll(params: Analysis): void {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,17 +64,10 @@ describe(["@tier1"], "Binary Analysis", () => {
this.analysisData = analysisData;
});

// Interceptors
cy.intercept("POST", "/hub/application*").as("postApplication");
cy.intercept("GET", "/hub/application*").as("getApplication");
});

afterEach("Persist session", function () {
// Reset URL from report page to web UI
resetURL();
});

it.skip("Bug MTA-1183 | Binary Analysis", function () {
it("Binary Analysis", function () {
// For binary analysis application must have group,artifcat and version.
application = new Analysis(
getRandomApplicationData("tackletestApp_binary", {
Expand All @@ -91,6 +84,10 @@ describe(["@tier1"], "Binary Analysis", () => {
application.verifyAnalysisStatus(AnalysisStatuses.completed);
});

afterEach("Persist session", function () {
resetURL();
});

after("Perform test data clean up", function () {
application.delete();
source_credential.delete();
Expand Down

0 comments on commit e736061

Please sign in to comment.