Skip to content
Snippets Groups Projects
Commit ada39d27 authored by jojohoch's avatar jojohoch
Browse files

[player] Add basic test for SectionContainerComponent

parent 2a5996be
No related branches found
No related tags found
No related merge requests found
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { SectionContainerComponent } from './section-container.component';
describe('SectionContainerComponent', () => {
let component: SectionContainerComponent;
let fixture: ComponentFixture<SectionContainerComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [
SectionContainerComponent
]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(SectionContainerComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment