File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
projects/igniteui-angular/src/lib/grids/grid Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -344,13 +344,15 @@ describe('IgxGrid - Grid Sorting #grid', () => {
344344
345345 // Verify that the grid is NOT sorted.
346346 expect ( GridFunctions . getValueFromCellElement ( GridFunctions . getCurrentCellFromGrid ( grid , 0 , 1 ) ) ) . toEqual ( 'Jane' ) ;
347+ // tslint:disable-next-line: max-line-length
347348 expect ( GridFunctions . getValueFromCellElement ( GridFunctions . getCurrentCellFromGrid ( grid , grid . data . length - 1 , 1 ) ) ) . toEqual ( 'Connor' ) ;
348349
349350 GridFunctions . clickHeaderSortIcon ( firstHeaderCell ) ;
350351 fixture . detectChanges ( ) ;
351352
352353 // Verify that the grid is NOT sorted.
353354 expect ( GridFunctions . getValueFromCellElement ( GridFunctions . getCurrentCellFromGrid ( grid , 0 , 1 ) ) ) . toEqual ( 'Jane' ) ;
355+ // tslint:disable-next-line: max-line-length
354356 expect ( GridFunctions . getValueFromCellElement ( GridFunctions . getCurrentCellFromGrid ( grid , grid . data . length - 1 , 1 ) ) ) . toEqual ( 'Connor' ) ;
355357 } ) ;
356358 } ) ;
You can’t perform that action at this time.
0 commit comments