Skip to content

Commit

Permalink
[ACS-8993] [E2E] fixed expect in sorting order for C261147 (#4262)
Browse files Browse the repository at this point in the history
  • Loading branch information
datguychen authored Nov 28, 2024
1 parent b2c1f27 commit 4cb6e56
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions e2e/playwright/list-views/exclude.tests.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{
"C261153": "https://alfresco.atlassian.net/browse/AAE-7517",
"C261147": "https://hyland.atlassian.net/browse/ACS-8993"
"C261153": "https://alfresco.atlassian.net/browse/AAE-7517"
}
4 changes: 2 additions & 2 deletions e2e/playwright/list-views/src/tests/sort-list.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ test.describe('Remember sorting', () => {
});

test('[C261147] Sort order is retained when user changes the page from pagination', async ({ personalFiles }) => {
const lastFileInArray = testData.user1.files.jpg.slice(-1).pop();
const firstFileInArray = testData.user1.files.pdf[1];
const lastFileInArray = testData.user1.files.jpg.slice(-2)[0];
const firstFileInArray = testData.user1.files.pdf[0];

await personalFiles.pagination.clickOnNextPage();
await personalFiles.dataTable.spinnerWaitForReload();
Expand Down

0 comments on commit 4cb6e56

Please sign in to comment.