import { ComponentFixture, TestBed } from '@angular/core/testing'; import { VideoComponent } from './video.component'; describe('VideoComponent', () => { let component: VideoComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ VideoComponent ] }) .compileComponents(); }); beforeEach(() => { fixture = TestBed.createComponent(VideoComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });