Skip to content

Commit 941bc84

Browse files
committed
chore(*): bumping up a timeout
1 parent 6cbffc7 commit 941bc84

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ npm-debug.log
3838
yarn-error.log
3939
testem.log
4040
/typings
41+
TESTS-**.xml
4142

4243
# System Files
4344
.DS_Store

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ describe('IgxHierarchicalGrid Navigation', () => {
172172
const childGridContent = fixture.debugElement.queryAll(By.css(GRID_CONTENT_CLASS))[1];
173173
UIInteractions.triggerEventHandlerKeyDown('home', childGridContent, false, false, true);
174174
fixture.detectChanges();
175-
await wait(DEBOUNCE_TIME * 2);
175+
await wait(DEBOUNCE_TIME * 3);
176176

177177
const selectedCell = fixture.componentInstance.selectedCell;
178178
expect(selectedCell.value).toEqual(0);
@@ -949,10 +949,10 @@ describe('IgxHierarchicalGrid Navigation', () => {
949949

950950
@Component({
951951
template: `
952-
<igx-hierarchical-grid #grid1 [data]="data" (selected)='selected($event)'
953-
[autoGenerate]="true" [height]="'400px'" [width]="'500px'" #hierarchicalGrid primaryKey="ID" [expandChildren]='true'>
954-
<igx-row-island (selected)='selected($event)' [key]="'childData'" [autoGenerate]="true" [height]="null" #rowIsland>
955-
<igx-row-island (selected)='selected($event)' [key]="'childData'" [autoGenerate]="true" [height]="null" #rowIsland2 >
952+
<igx-hierarchical-grid #grid1 [data]="data" (selected)="selected($event)"
953+
[autoGenerate]="true" [height]="'400px'" [width]="'500px'" #hierarchicalGrid primaryKey="ID" [expandChildren]="true">
954+
<igx-row-island (selected)="selected($event)" [key]="'childData'" [autoGenerate]="true" [height]="null" #rowIsland>
955+
<igx-row-island (selected)="selected($event)" [key]="'childData'" [autoGenerate]="true" [height]="null" #rowIsland2 >
956956
</igx-row-island>
957957
</igx-row-island>
958958
</igx-hierarchical-grid>`

projects/igniteui-angular/src/lib/tree/tree.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,6 @@ describe('IgxTree #treeView', () => {
690690
});
691691
it('Should render proper roles for nodes containing link children', () => {
692692
pending('Test not implemented');
693-
694693
});
695694
});
696695
});

0 commit comments

Comments
 (0)