[ACS-6107] Updated default configuration for date-range component to be compatible with the new advanced search date range component (#3532)

* [ACS-6107] Updated default configuraiton for date-range component in extensions to match the required config for the new date range component

* [ACS-6107] Updated E2Es to remove references to old date-range component

* [ACS-6107] Restored missing column key
This commit is contained in:
swapnil-verma-gl
2023-12-26 11:14:33 +05:30
committed by GitHub
parent 373a41bd16
commit 339dc60d6d
6 changed files with 17 additions and 44 deletions

View File

@@ -73,7 +73,6 @@ describe('Search filters', () => {
const { dataTable, filters, toolbar } = page;
const fileTypeFilter = filters.fileType;
const createdDateFilter = filters.createdDate;
const peopleFilter = filters.people;
const locationFilter = filters.location;
const modifiedDateFilter = filters.modifiedDate;
@@ -111,7 +110,6 @@ describe('Search filters', () => {
});
it('[C279186] Filters are displayed', async () => {
expect(await createdDateFilter.isDisplayed()).toBe(true, 'Created date filter panel not displayed');
expect(await fileTypeFilter.isDisplayed()).toBe(true, 'File type filter panel not displayed');
expect(await peopleFilter.isDisplayed()).toBe(true, 'People filter panel not displayed');
expect(await locationFilter.isDisplayed()).toBe(true, 'Location filter panel not displayed');