Skip to content

Commit

Permalink
auto lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Advitya17 committed Mar 5, 2024
1 parent 53aaf78 commit f8a2902
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ function assertNumberOfChartRowsEqual(
.should("be.gte", expectedNumberOfCohorts[0])
.and("be.lte", expectedNumberOfCohorts[1]);
} else if (isVision) {
cy.get(getChartItems(chartIdentifier)).its("length").should("be.gt", 2);
} else {
cy.get(getChartItems(chartIdentifier)).should(
"have.length",
expectedNumberOfCohorts
);
}
cy.get(getChartItems(chartIdentifier)).its("length").should("be.gt", 2);
} else {
cy.get(getChartItems(chartIdentifier)).should(
"have.length",
expectedNumberOfCohorts
);
}
}

0 comments on commit f8a2902

Please sign in to comment.