|
1 | 1 | import { TestBed, waitForAsync } from '@angular/core/testing'; |
2 | | -import { IgxGridComponent } from '../../grids/grid/grid.component'; |
3 | 2 | import { ExportUtilities } from '../exporter-common/export-utilities'; |
4 | 3 | import { IgxPdfExporterService } from './pdf-exporter'; |
5 | 4 | import { IgxPdfExporterOptions } from './pdf-exporter-options'; |
6 | | -import { GridIDNameJobTitleComponent, IgxGridFilteringComponent } from '../../test-utils/grid-samples.spec'; |
| 5 | +import { GridIDNameJobTitleComponent } from '../../test-utils/grid-samples.spec'; |
7 | 6 | import { first } from 'rxjs/operators'; |
8 | 7 | import { NoopAnimationsModule } from '@angular/platform-browser/animations'; |
9 | | -import { OneGroupThreeColsGridComponent, NestedColumnGroupsGridComponent } from '../../test-utils/grid-mch-sample.spec'; |
| 8 | +import { NestedColumnGroupsGridComponent, ColumnGroupTestComponent } from '../../test-utils/grid-mch-sample.spec'; |
10 | 9 | import { IgxHierarchicalGridTestBaseComponent } from '../../test-utils/hierarchical-grid-components.spec'; |
11 | 10 | import { IgxTreeGridSortingComponent, IgxTreeGridPrimaryForeignKeyComponent } from '../../test-utils/tree-grid-components.spec'; |
| 11 | +import { CustomSummariesComponent } from '../../grids/grid/grid-summary.spec'; |
12 | 12 |
|
13 | 13 | describe('PDF Grid Exporter', () => { |
14 | 14 | let exporter: IgxPdfExporterService; |
@@ -236,11 +236,11 @@ describe('PDF Grid Exporter', () => { |
236 | 236 | TestBed.configureTestingModule({ |
237 | 237 | imports: [ |
238 | 238 | NoopAnimationsModule, |
239 | | - OneGroupThreeColsGridComponent |
| 239 | + ColumnGroupTestComponent |
240 | 240 | ] |
241 | 241 | }).compileComponents(); |
242 | 242 |
|
243 | | - const fix = TestBed.createComponent(OneGroupThreeColsGridComponent); |
| 243 | + const fix = TestBed.createComponent(ColumnGroupTestComponent); |
244 | 244 | fix.detectChanges(); |
245 | 245 |
|
246 | 246 | const grid = fix.componentInstance.grid; |
@@ -278,11 +278,11 @@ describe('PDF Grid Exporter', () => { |
278 | 278 | TestBed.configureTestingModule({ |
279 | 279 | imports: [ |
280 | 280 | NoopAnimationsModule, |
281 | | - IgxGridFilteringComponent |
| 281 | + CustomSummariesComponent |
282 | 282 | ] |
283 | 283 | }).compileComponents(); |
284 | 284 |
|
285 | | - const fix = TestBed.createComponent(IgxGridFilteringComponent); |
| 285 | + const fix = TestBed.createComponent(CustomSummariesComponent); |
286 | 286 | fix.detectChanges(); |
287 | 287 |
|
288 | 288 | const grid = fix.componentInstance.grid; |
|
0 commit comments