Skip to content

Commit

Permalink
Fixed unit tests
Browse files Browse the repository at this point in the history
Signed-off-by: Neha Gokhale <[email protected]>
  • Loading branch information
nmgokhale committed Oct 15, 2024
1 parent 22f51ee commit f81c1ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ function getTableHeaderRows(container) {
}

function getTableRows(container) {
const rows = within(container).getAllByRole("row");
const rows = within(container).getAllByRole("row", { hidden: "true" });
const res = [];
for (let i = 0; i < rows.length; i++) {
if (rows[i].outerHTML.includes("properties-data-row")) {
Expand Down

0 comments on commit f81c1ca

Please sign in to comment.