Started implementing video support.

This commit is contained in:
2026-04-10 09:15:37 +02:00
parent 7d9737e9c2
commit 2bcb6adbb3
13 changed files with 429 additions and 55 deletions

View 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();
});
});