Skip to content

Commit

Permalink
[ACS-6107] Updated E2Es to remove references to old date-range component
Browse files Browse the repository at this point in the history
  • Loading branch information
swapnil-verma-gl committed Nov 21, 2023
1 parent bab5f93 commit 378a175
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 87 deletions.
2 changes: 0 additions & 2 deletions e2e/protractor/suites/search/search-filters.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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');
Expand Down

This file was deleted.

1 change: 0 additions & 1 deletion projects/aca-testing-shared/src/components/search/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
*/

export * from './filters/autocomplete-chips-filter';
export * from './filters/created-date-filter';
export * from './filters/facet-filter';
export * from './filters/generic-filter';
export * from './filters/properties-filter';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@

import { by, browser } from 'protractor';
import { Component } from '../component';
import { CreatedDateFilter } from './filters/created-date-filter';
import { FacetFilter } from './filters/facet-filter';
import { AutocompleteChipsFilter } from './filters/autocomplete-chips-filter';
import { PropertiesFilter } from './filters/properties-filter';
Expand All @@ -33,7 +32,6 @@ import { FacetTabbedFilter } from './filters/facet-tabbed-filter';
export class SearchFilters extends Component {
resetAllButton = browser.element(by.css('button[adf-reset-search]'));

createdDate = new CreatedDateFilter();
fileType = new PropertiesFilter();
people = new FacetTabbedFilter('People');
location = new AutocompleteChipsFilter('Location');
Expand Down

0 comments on commit 378a175

Please sign in to comment.