Skip to content

Commit 85ecd39

Browse files
committed
chore(*): remove obsolete test #6594
1 parent 68a9dbe commit 85ecd39

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

projects/igniteui-angular/src/lib/grids/grid/grid-filtering-ui.spec.ts

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1355,31 +1355,6 @@ describe('IgxGrid - Filtering Row UI actions #grid', () => {
13551355
verifyFilterRowUI(input, close, reset);
13561356
}));
13571357

1358-
it('Should commit the input and new chip after picking date from calendar for filtering.', fakeAsync(() => {
1359-
GridFunctions.clickFilterCellChip(fix, 'ReleaseDate');
1360-
1361-
// Click input to open calendar.
1362-
const filteringRow = fix.debugElement.query(By.directive(IgxGridFilteringRowComponent));
1363-
const input = filteringRow.query(By.directive(IgxInputDirective));
1364-
input.triggerEventHandler('click', null);
1365-
tick(100);
1366-
fix.detectChanges();
1367-
1368-
// Click the today date.
1369-
const outlet = document.getElementsByClassName('igx-grid__outlet')[0];
1370-
const calendar = outlet.getElementsByClassName('igx-calendar')[0];
1371-
const todayDayItem = calendar.querySelector('.igx-calendar__date--current');
1372-
(<HTMLElement>todayDayItem).click();
1373-
tick(200);
1374-
fix.detectChanges();
1375-
1376-
// Verify the chip and input are committed.
1377-
const filterChip = filteringRow.query(By.directive(IgxChipComponent));
1378-
expect(filterChip).toBeTruthy();
1379-
expect(filterChip.componentInstance.selected).toBeFalsy();
1380-
expect(input.nativeElement.value).toEqual('');
1381-
}));
1382-
13831358
it('Should navigate keyboard focus correctly between the filter row and the grid cells.', fakeAsync(() => {
13841359
GridFunctions.clickFilterCellChip(fix, 'ProductName');
13851360

0 commit comments

Comments
 (0)