[AAE-3326] Content node selector - sort files by createdAt desc by de… (#6674)

* [AAE-3326] Content node selector - sort files by createdAt desc by default

* Fix process custom filter cloud e2e
This commit is contained in:
arditdomi
2021-02-16 16:16:06 +01:00
committed by GitHub
parent cf0c95b3d1
commit 76ac996c48
4 changed files with 36 additions and 3 deletions

View File

@@ -160,7 +160,7 @@ describe('Process list cloud', () => {
await setFilter({ order: SORT_DIRECTION.DESC});
await waitTillContentLoaded();
await expect(await processList.getDataTable().checkListIsSorted(SORT_DIRECTION.ASC, 'Name')).toBe(true);
await expect(await processList.getDataTable().checkListIsSorted(SORT_DIRECTION.DESC, 'Name')).toBe(true);
});
it('[C291783] Should display processes ordered by id when Id is selected from sort dropdown', async () => {