Skip to content

Commit 18c8697

Browse files
authored
chore(*): updating dependencies (#12353)
* chore(*): updating dependencies * test(*): refactoring simple-combo * test(hgrid): refactoring hgrid state test * test(hgrid): selection tests refactor
1 parent 7498e03 commit 18c8697

File tree

6 files changed

+91
-131
lines changed

6 files changed

+91
-131
lines changed

package-lock.json

Lines changed: 61 additions & 93 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@
7171
"lodash-es": "^4.17.21",
7272
"rxjs": "^6.6.7",
7373
"tslib": "^2.3.0",
74-
"uuid": "^8.3.0",
75-
"zone.js": "~0.11.4"
74+
"uuid": "^9.0.0",
75+
"zone.js": "~0.12.0"
7676
},
7777
"devDependencies": {
7878
"@angular-devkit/build-angular": "^15.0.0",
@@ -85,9 +85,9 @@
8585
"@angular/cli": "^15.0.0",
8686
"@angular/compiler-cli": "^15.0.0",
8787
"@angular/language-service": "^15.0.0",
88-
"@angularclass/hmr": "^2.1.3",
88+
"@angularclass/hmr": "^3.0.0",
8989
"@cypress/schematic": "^2.3.0",
90-
"@types/estree": "^0.0.50",
90+
"@types/estree": "^1.0.0",
9191
"@types/jasmine": "^4.3.0",
9292
"@types/jasminewd2": "^2.0.10",
9393
"@types/node": "^18.11.0",
@@ -135,7 +135,6 @@
135135
"ts-node": "^10.8.1",
136136
"typedoc": "^0.23.21",
137137
"typedoc-plugin-localization": "^2.4.0",
138-
"typescript": "4.8.4",
139-
"webpack-sources": "1.3.0"
138+
"typescript": "4.8.4"
140139
}
141140
}

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ describe('IgxHierarchicalGrid selection #hGrid', () => {
4646
}))
4747

4848
describe('Cell selection', () => {
49-
beforeEach(waitForAsync(() => {
49+
beforeEach(() => {
5050
fix = TestBed.createComponent(IgxHierarchicalGridTestBaseComponent);
5151
fix.detectChanges();
5252
hierarchicalGrid = fix.componentInstance.hgrid;
5353
rowIsland1 = fix.componentInstance.rowIsland;
5454
rowIsland2 = fix.componentInstance.rowIsland2;
55-
}));
55+
});
5656

5757
it('should allow only one cell to be selected in the whole hierarchical grid.', () => {
5858
hierarchicalGrid.height = '500px';
@@ -484,13 +484,13 @@ describe('IgxHierarchicalGrid selection #hGrid', () => {
484484
});
485485

486486
describe('Row Selection', () => {
487-
beforeEach(fakeAsync(/** height/width setter rAF */() => {
487+
beforeEach(() => {
488488
fix = TestBed.createComponent(IgxHierarchicalGridRowSelectionComponent);
489489
fix.detectChanges();
490490
hierarchicalGrid = fix.componentInstance.hgrid;
491491
rowIsland1 = fix.componentInstance.rowIsland;
492492
rowIsland2 = fix.componentInstance.rowIsland2;
493-
}));
493+
});
494494

495495
it('should have checkboxes on each row', fakeAsync(() => {
496496
hierarchicalGrid.expandChildren = true;
@@ -1302,13 +1302,13 @@ describe('IgxHierarchicalGrid selection #hGrid', () => {
13021302
});
13031303

13041304
describe('Row Selection CRUD', () => {
1305-
beforeEach(fakeAsync(/** height/width setter rAF */() => {
1305+
beforeEach(() => {
13061306
fix = TestBed.createComponent(IgxHierarchicalGridRowSelectionNoTransactionsComponent);
13071307
fix.detectChanges();
13081308
hierarchicalGrid = fix.componentInstance.hgrid;
13091309
rowIsland1 = fix.componentInstance.rowIsland;
13101310
rowIsland2 = fix.componentInstance.rowIsland2;
1311-
}));
1311+
});
13121312

13131313
it('should deselect deleted row', () => {
13141314
hierarchicalGrid.onHeaderSelectorClick(UIInteractions.getMouseEvent('click'));
@@ -1382,12 +1382,12 @@ describe('IgxHierarchicalGrid selection #hGrid', () => {
13821382
describe('Custom row selectors', () => {
13831383
let hGrid;
13841384

1385-
beforeEach(fakeAsync(() => {
1385+
beforeEach(() => {
13861386
fix = TestBed.createComponent(IgxHierarchicalGridCustomSelectorsComponent);
13871387
fix.detectChanges();
13881388
hGrid = fix.componentInstance.hGrid;
13891389
hGrid.rowSelection = GridSelectionMode.multiple;
1390-
}));
1390+
});
13911391

13921392
it('Row context `select` method selects a single row', () => {
13931393
// root grid

0 commit comments

Comments
 (0)