Skip to content

Commit c6d1030

Browse files
committed
test(*): revert timeouts #4908
1 parent 1991919 commit c6d1030

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,7 @@ describe('IgxGrid Component Tests', () => {
897897
expect(window.getComputedStyle(grid.nativeElement).height).toMatch('300px');
898898
expect(window.getComputedStyle(grid.nativeElement).width).toMatch('400px');
899899
expect(grid.rowList.length).toBeGreaterThan(0);
900-
}), 10000);
900+
}));
901901

902902
it('should render 10 records if height is unset and parent container\'s height is unset', () => {
903903
const fix = TestBed.createComponent(IgxGridWrappedInContComponent);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@ describe('IgxHierarchicalGrid Multi-layout Navigation', () => {
832832
await wait(100);
833833
fixture.detectChanges();
834834
expect(child2Cell.selected).toBe(true);
835-
}), 10000);
835+
}));
836836
it('should allow navigating with Tab/Shift+Tab between sibling child grids.', (async () => {
837837
const child1 = hierarchicalGrid.hgridAPI.getChildGrids(false)[0];
838838
const child2 = hierarchicalGrid.hgridAPI.getChildGrids(false)[4];

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1029,7 +1029,7 @@ describe('Row editing expanding/collapsing', () => {
10291029
indicatorDiv.triggerEventHandler('click', new Event('click'));
10301030
tick();
10311031
expect(treeGrid.rowEditingOverlay.collapsed).toBeTruthy('Edit overlay should not show again');
1032-
}), 10000);
1032+
}));
10331033

10341034
it('Hide banner with collapsing a node, using API', fakeAsync(() => {
10351035
const cell = treeGrid.getCellByColumn(1, 'Name');

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ describe('IgxTreeGrid - Indentation', () => {
4444

4545
// Verify the tree cell is the first cell for every row
4646
TreeGridFunctions.verifyCellsPosition(rows, 4);
47-
}, 10000);
47+
});
4848

4949
it('should have correct indentation for every record of each level', () => {
5050
const rows = TreeGridFunctions.sortElementsVertically(TreeGridFunctions.getAllRows(fix));
@@ -201,7 +201,7 @@ describe('IgxTreeGrid - Indentation', () => {
201201

202202
// Verify the tree cell is the first cell for every row
203203
TreeGridFunctions.verifyCellsPosition(rows, 5);
204-
}, 10000);
204+
});
205205

206206
it('should have correct indentation for every record of each level', () => {
207207
const rows = TreeGridFunctions.sortElementsVertically(TreeGridFunctions.getAllRows(fix));

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ describe('IgxTreeGrid Component Tests', () => {
4848
expect(window.getComputedStyle(grid.nativeElement).height).toMatch('300px');
4949
expect(window.getComputedStyle(grid.nativeElement).width).toMatch('400px');
5050
expect(grid.rowList.length).toBeGreaterThan(0);
51-
}), 10000);
51+
}));
5252

5353
it('should render 10 records if height is unset and parent container\'s height is unset', () => {
5454
fix.detectChanges();

projects/igniteui-angular/src/lib/services/csv/csv-exporter-grid.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ describe('CSV Grid Exporter', () => {
5858
const wrapper = await getExportedData(grid, options);
5959
wrapper.verifyData(wrapper.simpleGridData);
6060
});
61-
}, 10000);
61+
});
6262

6363
it('should honor \'ignoreFiltering\' option.', async () => {
6464

projects/igniteui-angular/src/lib/services/excel/excel-exporter-grid.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ describe('Excel Exporter', () => {
6464
TestMethods.testRawData(currentGrid, async (grid) => {
6565
await exportAndVerify(grid, options, actualData.simpleGridData);
6666
});
67-
}, 10000);
67+
});
6868

6969
it('should honor \'ignoreFiltering\' option.', async () => {
7070
const result = TestMethods.createGridAndFilter();

0 commit comments

Comments
 (0)