Started implementing video support.
This commit is contained in:
22
src/app/chat/elements/video-player/video-player.spec.ts
Normal file
22
src/app/chat/elements/video-player/video-player.spec.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { VideoPlayer } from './video-player';
|
||||
|
||||
describe('VideoPlayer', () => {
|
||||
let component: VideoPlayer;
|
||||
let fixture: ComponentFixture<VideoPlayer>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [VideoPlayer],
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(VideoPlayer);
|
||||
component = fixture.componentInstance;
|
||||
await fixture.whenStable();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user