@@ -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