Skip to content

Commit

Permalink
fix static report test
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro Brugarolas <[email protected]>
  • Loading branch information
abrugaro committed Nov 8, 2024
1 parent a273120 commit 900ca57
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ describe(["@tier2"], "Test Static Report UI", function () {
cy.get(tdTag).eq(0).should("have.text", appName);
cy.get(tdTag).eq(1).click(); // tags
validateTextPresence(tdTag, reportData.technology);
cy.get(tdTag).eq(2).should("contain.text", "10");
cy.get(tdTag).eq(2).invoke("text").then(parseInt).should("be.gte", 0);
});

it("Validate Issues Tab", function () {
Expand Down

0 comments on commit 900ca57

Please sign in to comment.