2019-09-23 14:23:24 +09:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
2019-10-07 13:49:12 +09:00
|
|
|
import { VideoComponent } from './video.component';
|
2019-09-23 14:23:24 +09:00
|
|
|
|
2019-10-07 13:49:12 +09:00
|
|
|
describe('Chat::MessageBox::VideoComponent', () => {
|
|
|
|
let component: VideoComponent;
|
|
|
|
let fixture: ComponentFixture<VideoComponent>;
|
2019-09-23 14:23:24 +09:00
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2019-10-07 13:49:12 +09:00
|
|
|
declarations: [VideoComponent]
|
2019-09-23 14:23:24 +09:00
|
|
|
}).compileComponents();
|
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2019-10-07 13:49:12 +09:00
|
|
|
fixture = TestBed.createComponent(VideoComponent);
|
2019-09-23 14:23:24 +09:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|