Skip to content

Commit 8c90d0f

Browse files
committed
chore: fix failing unit tests
1 parent d7f261c commit 8c90d0f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ const gridStub = {
105105
onSort: new SlickEvent(),
106106
} as unknown as SlickGrid;
107107

108-
@Component({ template: `<h4>Loading...</h4>` })
108+
@Component({ template: `<h4>Loading...</h4>`, standalone: false })
109109
class TestPreloadComponent {}
110110

111111
@Component({ template: `<h1>Some Title</h1>` })

src/app/modules/angular-slickgrid/services/__tests__/angularUtilService.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const viewContainerRefStub = {
1212
detectChanges: vi.fn(),
1313
} as unknown as ViewContainerRef;
1414

15-
@Component({ template: `<h4>Loading...</h4>` })
15+
@Component({ template: `<h4>Loading...</h4>`, standalone: false })
1616
class TestPreloadComponent {}
1717

1818
@Component({ template: `<h1>{{ title }}</h1>` })

0 commit comments

Comments
 (0)