Skip to content

Commit

Permalink
[WIP] Uplaod binary fix
Browse files Browse the repository at this point in the history
Signed-off-by: Karishma Punwatkar <[email protected]>

	modified:   cypress/e2e/tests/migration/applicationinventory/analysis/upload_binary_analysis.test.ts
  • Loading branch information
kpunwatk committed Mar 1, 2024
1 parent c164b40 commit 0d9f656
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import {
} from "../../../../../utils/utils";
import { Analysis } from "../../../../models/migration/applicationinventory/analysis";
import { Application } from "../../../../models/migration/applicationinventory/application";
import { AnalysisStatuses } from "../../../../types/constants";
import { AnalysisStatuses, SEC } from "../../../../types/constants";

const applicationsList: Analysis[] = [];
describe(["@tier1"], "Upload Binary Analysis", () => {
Expand All @@ -34,9 +34,11 @@ describe(["@tier1"], "Upload Binary Analysis", () => {
beforeEach("Load data", function () {
cy.fixture("application").then(function (appData) {
this.appData = appData;
cy.wait(2 * SEC);
});
cy.fixture("analysis").then(function (analysisData) {
this.analysisData = analysisData;
cy.wait(2 * SEC);
});

cy.intercept("GET", "/hub/application*").as("getApplication");
Expand Down

0 comments on commit 0d9f656

Please sign in to comment.