Skip to content

Commit

Permalink
[AAE-17865] Remove few already covered e2es from ADF (#9078)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomgny committed Nov 9, 2023
1 parent 625cf2b commit c019402
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 223 deletions.
45 changes: 0 additions & 45 deletions e2e/process-services-cloud/process/process-custom-filters.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,18 +151,6 @@ describe('Process list cloud', () => {
await processList.getDataTable().waitTillContentLoaded();
}

it('[C290069] Should display processes ordered by name when Name is selected from sort dropdown', async () => {
await setFilter({ status: PROCESS_STATUS.RUNNING });
await setFilter({ sort: 'Name' });
await setFilter({ order: SORT_DIRECTION.ASC });

await expect(await processList.getDataTable().checkListIsSorted(SORT_DIRECTION.ASC, 'Process Name')).toBe(true);

await setFilter({ order: SORT_DIRECTION.DESC});

await expect(await processList.getDataTable().checkListIsSorted(SORT_DIRECTION.DESC, 'Process Name')).toBe(true);
});

it('[C291783] Should display processes ordered by id when Id is selected from sort dropdown', async () => {
await setFilter({ status: PROCESS_STATUS.RUNNING });
await setFilter({ sort: 'Id'});
Expand All @@ -185,39 +173,6 @@ describe('Process list cloud', () => {
await expect(await processList.getDataTable().checkListIsSorted(SORT_DIRECTION.DESC, 'Status')).toBe(true);
});

it('[C305054] Should display processes ordered by started by when Started By is selected from sort dropdown', async () => {
await setFilter({ status: PROCESS_STATUS.ALL });
await setFilter({ sort: 'Started by' });
await setFilter({ order: SORT_DIRECTION.ASC });

await expect(await processList.getDataTable().checkListIsSorted(SORT_DIRECTION.ASC, 'Started by')).toBe(true);

await setFilter({ order: SORT_DIRECTION.DESC});
await expect(await processList.getDataTable().checkListIsSorted(SORT_DIRECTION.DESC, 'Started by')).toBe(true);
});

it('[C305054] Should display processes ordered by processdefinitionid date when ProcessDefinitionId is selected from sort dropdown', async () => {
await setFilter({ status: PROCESS_STATUS.ALL });
await setFilter({ sort: 'ProcessDefinitionId' });
await setFilter({ order: SORT_DIRECTION.ASC });

await expect(await processList.getDataTable().checkListIsSorted(SORT_DIRECTION.ASC, 'Process Definition Id')).toBe(true);

await setFilter({ order: SORT_DIRECTION.DESC});
await expect(await processList.getDataTable().checkListIsSorted(SORT_DIRECTION.DESC, 'Process Definition Id')).toBe(true);
});

it('[C305054] Should display processes ordered by processdefinitionkey date when ProcessDefinitionKey is selected from sort dropdown', async () => {
await setFilter({ status: PROCESS_STATUS.ALL });
await setFilter({ sort: 'ProcessDefinitionKey' });
await setFilter({ order: SORT_DIRECTION.ASC });

await expect(await processList.getDataTable().checkListIsSorted(SORT_DIRECTION.ASC, 'Process Definition Key')).toBe(true);

await setFilter({ order: SORT_DIRECTION.DESC});
await expect(await processList.getDataTable().checkListIsSorted(SORT_DIRECTION.DESC, 'Process Definition Key')).toBe(true);
});

it('[C305054] Should display processes ordered by last modified date when Last Modified is selected from sort dropdown', async () => {
await setFilter({ status: PROCESS_STATUS.ALL });
await setFilter({ sort: 'Last Modified' });
Expand Down

This file was deleted.

0 comments on commit c019402

Please sign in to comment.