diff --git a/projects/player/src/app/components/section-container/section-container.component.spec.ts b/projects/player/src/app/components/section-container/section-container.component.spec.ts index 3da8c80f02bc261dbd4d2fe8135656c0a0fb87b2..a72f2525744f37450c4f2bad6d8f032dbf358edd 100644 --- a/projects/player/src/app/components/section-container/section-container.component.spec.ts +++ b/projects/player/src/app/components/section-container/section-container.component.spec.ts @@ -1,5 +1,6 @@ import { ComponentFixture, TestBed } from '@angular/core/testing'; import { SectionContainerComponent } from './section-container.component'; +import { SectionComponent } from 'player/src/app/components/section/section.component'; describe('SectionContainerComponent', () => { let component: SectionContainerComponent; @@ -8,7 +9,8 @@ describe('SectionContainerComponent', () => { beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ - SectionContainerComponent + SectionContainerComponent, + SectionComponent ] }) .compileComponents(); @@ -17,6 +19,18 @@ describe('SectionContainerComponent', () => { beforeEach(() => { fixture = TestBed.createComponent(SectionContainerComponent); component = fixture.componentInstance; + component.pageSections = []; + component.section = { + elements: [], + height: 400, + backgroundColor: '#ffffff', + dynamicPositioning: true, + autoColumnSize: true, + autoRowSize: true, + gridColumnSizes: '1fr 1fr', + gridRowSizes: '1fr', + activeAfterID: '' + }; fixture.detectChanges(); });