Skip to content
This repository was archived by the owner on Jun 1, 2025. It is now read-only.

Commit e805449

Browse files
committed
chore: fix failing unit tests
1 parent d9a0a4e commit e805449

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/modules/angular-slickgrid/extensions/__tests__/slickRowDetailView.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ describe('SlickRowDetailView', () => {
439439
model: mockColumn,
440440
addon: expect.anything(),
441441
grid: gridStub,
442-
dataView: undefined,
442+
dataView: dataViewStub,
443443
parent: undefined,
444444
},
445445
{ sanitizer: expect.any(Function) }
@@ -476,7 +476,7 @@ describe('SlickRowDetailView', () => {
476476
model: mockColumn,
477477
addon: expect.anything(),
478478
grid: gridStub,
479-
dataView: undefined,
479+
dataView: dataViewStub,
480480
parent: undefined,
481481
},
482482
{ sanitizer: expect.any(Function) }
@@ -511,7 +511,7 @@ describe('SlickRowDetailView', () => {
511511
model: mockColumn,
512512
addon: expect.anything(),
513513
grid: gridStub,
514-
dataView: undefined,
514+
dataView: dataViewStub,
515515
parent: undefined,
516516
},
517517
{ sanitizer: expect.any(Function) }

0 commit comments

Comments
 (0)