Skip to content

Commit

Permalink
Fix /migration/controls/stakeholders/pagination.test.ts (#1223)
Browse files Browse the repository at this point in the history
Signed-off-by: Maayan Hadasi <[email protected]>
  • Loading branch information
mguetta1 authored Sep 24, 2024
1 parent d1aa700 commit 4cb524b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import {
selectItemsPerPage,
createMultipleStakeholders,
validatePagination,
deleteAllItems,
itemsPerPageValidation,
autoPageChangeValidations,
deleteAllRows,
} from "../../../../../utils/utils";
import { appTable } from "../../../../views/common.view";
import { Stakeholders } from "../../../../models/migration/controls/stakeholders";
Expand Down Expand Up @@ -56,10 +56,10 @@ describe(["@tier3"], "Stakeholder pagination validations", function () {
Stakeholders.openList();
cy.get("@getStakeholders");
selectItemsPerPage(10);
autoPageChangeValidations(appTable, "Email");
autoPageChangeValidations(appTable, "Email", true);
});

after("Perform test data clean up", function () {
deleteAllItems();
deleteAllRows();
});
});

0 comments on commit 4cb524b

Please sign in to comment.