Skip to content

Commit 1a12da3

Browse files
committed
test(Grid): #5005 Rem unneeded configureTestSuite
1 parent 41a0480 commit 1a12da3

20 files changed

+56
-56
lines changed

projects/igniteui-angular/src/lib/calendar/calendar.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1957,7 +1957,7 @@ describe('IgxCalendar', () => {
19571957
});
19581958

19591959
describe('Continuous month increment/decrement', () => {
1960-
configureTestSuite();
1960+
// configureTestSuite();
19611961

19621962
let fixture;
19631963
let dom;

projects/igniteui-angular/src/lib/date-picker/date-picker.component.spec.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ describe('IgxDatePicker', () => {
4242
});
4343

4444
describe('Base Tests', () => {
45-
configureTestSuite();
45+
// configureTestSuite();
4646
let fixture: ComponentFixture<IgxDatePickerTestComponent>;
4747
let datePicker: IgxDatePickerComponent;
4848

@@ -203,7 +203,7 @@ describe('IgxDatePicker', () => {
203203
});
204204

205205
describe('DatePicker with passed date', () => {
206-
configureTestSuite();
206+
// configureTestSuite();
207207
let fixture: ComponentFixture<IgxDatePickerWithPassedDateComponent>;
208208
let datePicker: IgxDatePickerComponent;
209209
let inputTarget;
@@ -465,7 +465,7 @@ describe('IgxDatePicker', () => {
465465
}));
466466

467467
describe('Drop-down opening', () => {
468-
configureTestSuite();
468+
// configureTestSuite();
469469
let fixture: ComponentFixture<IgxDatePickerOpeningComponent>;
470470
let datePicker: IgxDatePickerComponent;
471471

@@ -520,7 +520,7 @@ describe('IgxDatePicker', () => {
520520
});
521521

522522
describe('Drop-down Retemplated Date Picker', () => {
523-
configureTestSuite();
523+
// configureTestSuite();
524524
let fixture: ComponentFixture<IgxDropDownDatePickerRetemplatedComponent>;
525525
let datePicker: IgxDatePickerComponent;
526526

@@ -588,7 +588,7 @@ describe('IgxDatePicker', () => {
588588
});
589589

590590
describe('Drop-down mode', () => {
591-
configureTestSuite();
591+
// configureTestSuite();
592592
let fixture: ComponentFixture<IgxDatePickerEditableComponent>;
593593
let datePicker: IgxDatePickerComponent;
594594

projects/igniteui-angular/src/lib/directives/toggle/toggle.directive.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ describe('IgxToggle', () => {
451451
}));
452452

453453
describe('overlay settings', () => {
454-
configureTestSuite();
454+
// configureTestSuite();
455455
it('should pass correct defaults from IgxToggleActionDirective and respect outsideClickClose', fakeAsync(() => {
456456
const fixture = TestBed.createComponent(IgxToggleActionTestComponent);
457457
fixture.detectChanges();

projects/igniteui-angular/src/lib/directives/tooltip/tooltip.directive.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ describe('IgxTooltip', () => {
3434
});
3535

3636
describe('Single target with single tooltip', () => {
37-
configureTestSuite();
37+
// configureTestSuite();
3838
beforeEach(async(() => {
3939
fix = TestBed.createComponent(IgxTooltipSingleTargetComponent);
4040
fix.detectChanges();
@@ -262,7 +262,7 @@ describe('IgxTooltip', () => {
262262
}));
263263

264264
describe('Tooltip events', () => {
265-
configureTestSuite();
265+
// configureTestSuite();
266266
it('should emit the proper events when hovering/unhovering target', fakeAsync(() => {
267267
spyOn(tooltipTarget.onTooltipShow, 'emit');
268268
spyOn(tooltipTarget.onTooltipHide, 'emit');
@@ -365,7 +365,7 @@ describe('IgxTooltip', () => {
365365
});
366366

367367
describe('Tooltip touch', () => {
368-
configureTestSuite();
368+
// configureTestSuite();
369369
it('IgxTooltip is shown/hidden when touching/untouching its target', fakeAsync(() => {
370370
touchElement(button);
371371
flush();
@@ -433,7 +433,7 @@ describe('IgxTooltip', () => {
433433
});
434434

435435
describe('Multiple targets with single tooltip', () => {
436-
configureTestSuite();
436+
// configureTestSuite();
437437
let targetOne: IgxTooltipTargetDirective;
438438
let targetTwo: IgxTooltipTargetDirective;
439439
let buttonOne;

projects/igniteui-angular/src/lib/drop-down/drop-down.component.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ describe('IgxDropDown ', () => {
5757
}));
5858

5959
describe('igxDropDown integration tests', () => {
60-
configureTestSuite();
60+
// configureTestSuite();
6161
it('should select item by SPACE/ENTER and click', fakeAsync(() => {
6262
const fixture = TestBed.createComponent(IgxDropDownTestComponent);
6363
fixture.detectChanges();
@@ -923,7 +923,7 @@ describe('IgxDropDown ', () => {
923923
});
924924

925925
describe('igxDropDown Unit tests', () => {
926-
configureTestSuite();
926+
// configureTestSuite();
927927
it('Should fire events', fakeAsync(() => {
928928
const fixture = TestBed.createComponent(IgxDropDownTestComponent);
929929
const componentInstance = fixture.componentInstance;
@@ -1272,7 +1272,7 @@ describe('IgxDropDown ', () => {
12721272
});
12731273

12741274
describe('DropDownGroup Tests', () => {
1275-
configureTestSuite();
1275+
// configureTestSuite();
12761276
it('Should properly render item groups aria attributes - label, role, labelledby', fakeAsync(() => {
12771277
const fixture = TestBed.createComponent(GroupDropDownComponent);
12781278
fixture.detectChanges();
@@ -1340,7 +1340,7 @@ describe('IgxDropDown ', () => {
13401340
});
13411341

13421342
describe('Virtualized DropDown tests', () => {
1343-
configureTestSuite();
1343+
// configureTestSuite();
13441344
let fixture, button, dropdown: IgxDropDownComponent, scroll, items;
13451345
beforeEach(() => {
13461346
fixture = TestBed.createComponent(VirtualizedDropDownComponent);

projects/igniteui-angular/src/lib/expansion-panel/expansion-panel.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ describe('igxExpansionPanel', () => {
5151

5252

5353
describe('General tests: ', () => {
54-
configureTestSuite();
54+
// configureTestSuite();
5555
it('Should initialize the expansion panel component properly', () => {
5656
const fixture: ComponentFixture<IgxExpansionPanelListComponent> = TestBed.createComponent(IgxExpansionPanelListComponent);
5757
fixture.detectChanges();
@@ -153,7 +153,7 @@ describe('igxExpansionPanel', () => {
153153
});
154154

155155
describe('Expansion tests: ', () => {
156-
configureTestSuite();
156+
// configureTestSuite();
157157
function verifyPanelExpansionState(
158158
collapsed: boolean,
159159
panel: IgxExpansionPanelComponent,
@@ -778,7 +778,7 @@ describe('igxExpansionPanel', () => {
778778
});
779779

780780
describe('Aria tests', () => {
781-
configureTestSuite();
781+
// configureTestSuite();
782782
it('Should properly apply default aria properties', fakeAsync(() => {
783783
const fixture = TestBed.createComponent(IgxExpansionPanelListComponent);
784784
fixture.detectChanges();
@@ -901,7 +901,7 @@ describe('igxExpansionPanel', () => {
901901
});
902902

903903
describe('Rendering tests: ', () => {
904-
configureTestSuite();
904+
// configureTestSuite();
905905
it('Should apply all appropriate classes on combo initialization', fakeAsync(() => {
906906
const fixture: ComponentFixture<IgxExpansionPanelSampleComponent> = TestBed.createComponent(IgxExpansionPanelSampleComponent);
907907
fixture.detectChanges();

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,10 +231,10 @@ describe('IgxGrid - Cell component', () => {
231231
}));
232232

233233
describe('Cell Editing', () => {
234-
configureTestSuite();
234+
// configureTestSuite();
235235

236236
describe('Cell Editing - test edit templates, sorting and filtering', () => {
237-
configureTestSuite();
237+
// configureTestSuite();
238238
let fixture;
239239
let grid: IgxGridComponent;
240240
beforeEach(fakeAsync(/** height/width setter rAF */() => {
@@ -484,7 +484,7 @@ describe('IgxGrid - Cell component', () => {
484484
});
485485

486486
describe('EditMode - on scroll, pin, blur', () => {
487-
configureTestSuite();
487+
// configureTestSuite();
488488
let fixture;
489489
let grid;
490490
const CELL_CLASS_IN_EDIT_MODE = 'igx-grid__td--editing';

projects/igniteui-angular/src/lib/grids/grid/column-hiding.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -941,7 +941,7 @@ describe('Column Hiding UI', () => {
941941
});
942942

943943
describe('toolbar button', () => {
944-
configureTestSuite();
944+
// configureTestSuite();
945945
beforeEach(fakeAsync(/** height/width setter rAF */() => {
946946
fix = TestBed.createComponent(ColumnHidingTestComponent);
947947
fix.detectChanges();

projects/igniteui-angular/src/lib/grids/grid/column-moving.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ describe('IgxGrid - Column Moving', () => {
4848
});
4949

5050
describe('', () => {
51-
configureTestSuite();
51+
// configureTestSuite();
5252
beforeEach(fakeAsync(/** height/width setter rAF */() => {
5353
fixture = TestBed.createComponent(MovableColumnsComponent);
5454
fixture.detectChanges();
@@ -496,7 +496,7 @@ describe('IgxGrid - Column Moving', () => {
496496
});
497497

498498
describe('', () => {
499-
configureTestSuite();
499+
// configureTestSuite();
500500
beforeEach(fakeAsync(/** height/width setter rAF */() => {
501501
fixture = TestBed.createComponent(MovableTemplatedColumnsComponent);
502502
fixture.detectChanges();
@@ -532,7 +532,7 @@ describe('IgxGrid - Column Moving', () => {
532532
});
533533

534534
describe('', () => {
535-
configureTestSuite();
535+
// configureTestSuite();
536536
beforeEach(fakeAsync(/** height/width setter rAF */() => {
537537
fixture = TestBed.createComponent(MovableColumnsLargeComponent);
538538
fixture.detectChanges();
@@ -943,7 +943,7 @@ describe('IgxGrid - Column Moving', () => {
943943
});
944944

945945
describe('', () => {
946-
configureTestSuite();
946+
// configureTestSuite();
947947
beforeEach(fakeAsync(/** height/width setter rAF */() => {
948948
fixture = TestBed.createComponent(MultiColumnHeadersComponent);
949949
fixture.detectChanges();

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ describe('IgxGrid - Keyboard navigation', () => {
452452
}));
453453

454454
describe('in virtualized grid', () => {
455-
configureTestSuite();
455+
// configureTestSuite();
456456
let fix;
457457
let grid: IgxGridComponent;
458458

@@ -867,7 +867,7 @@ describe('IgxGrid - Keyboard navigation', () => {
867867
});
868868

869869
describe('Group By navigation ', () => {
870-
configureTestSuite();
870+
// configureTestSuite();
871871
let fix;
872872
let grid: IgxGridComponent;
873873
beforeEach(fakeAsync(/** height/width setter rAF */() => {

0 commit comments

Comments
 (0)