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