23 lines
563 B
TypeScript
23 lines
563 B
TypeScript
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();
|
|
});
|
|
});
|