diff --git a/projects/player/src/app/components/section/section.component.spec.ts b/projects/player/src/app/components/section/section.component.spec.ts new file mode 100644 index 0000000000000000000000000000000000000000..10261e63cc2285a7f997ff31c71320d5a18865b9 --- /dev/null +++ b/projects/player/src/app/components/section/section.component.spec.ts @@ -0,0 +1,38 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; +import { SectionComponent } from './section.component'; + +describe('SectionComponent', () => { + let component: SectionComponent; + let fixture: ComponentFixture<SectionComponent>; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ + SectionComponent + ] + }) + .compileComponents(); + }); + + beforeEach(async () => { + fixture = TestBed.createComponent(SectionComponent); + component = fixture.componentInstance; + component.section = { + elements: [], + height: 400, + backgroundColor: '#ffffff', + dynamicPositioning: true, + autoColumnSize: true, + autoRowSize: true, + gridColumnSizes: '1fr 1fr', + gridRowSizes: '1fr', + activeAfterID: '' + }; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); + +});