1- import { async , fakeAsync , tick , TestBed , discardPeriodicTasks } from '@angular/core/testing' ;
1+ import { async , TestBed } from '@angular/core/testing' ;
22import { IgxGridModule } from './grid.module' ;
33import { IgxGridComponent } from './grid.component' ;
4- import { Component , ViewChild , QueryList , OnInit , ElementRef , DebugElement } from '@angular/core' ;
4+ import { Component , ViewChild , DebugElement } from '@angular/core' ;
55import { NoopAnimationsModule } from '@angular/platform-browser/animations' ;
6- import { IgxColumnComponent , IgxColumnGroupComponent } from './column.component' ;
6+ import { IgxColumnGroupComponent } from './column.component' ;
77import { By } from '@angular/platform-browser' ;
88
99const GRID_COL_THEAD_TITLE_CLASS = 'igx-grid__th-title' ;
@@ -20,7 +20,7 @@ describe('IgxGrid - multi-column headers', () => {
2020 declarations : [
2121 OneGroupOneColGridComponent ,
2222 OneGroupThreeColsGridComponent ,
23- OneHundredColumnsGridComponent ,
23+ BlueWhaleGridComponent ,
2424 ColumnGroupTestComponent ,
2525 ColumnGroupFourLevelTestComponent
2626 ] ,
@@ -445,7 +445,7 @@ describe('IgxGrid - multi-column headers', () => {
445445 } ) ;
446446
447447 it ( 'Should render column group headers correctly.' , ( ( done ) => {
448- const fixture = TestBed . createComponent ( OneHundredColumnsGridComponent ) ;
448+ const fixture = TestBed . createComponent ( BlueWhaleGridComponent ) ;
449449 fixture . detectChanges ( ) ;
450450 const componentInstance = fixture . componentInstance ;
451451 const grid = componentInstance . grid ;
@@ -664,7 +664,7 @@ export class ColumnGroupFourLevelTestComponent {
664664 </igx-grid>
665665 `
666666} )
667- export class OneHundredColumnsGridComponent {
667+ export class BlueWhaleGridComponent {
668668 @ViewChild ( IgxGridComponent , { read : IgxGridComponent } )
669669 grid : IgxGridComponent ;
670670
0 commit comments