commencement de la page watching

This commit is contained in:
MiharyR 2021-11-21 01:30:53 +01:00
parent fd7322a7bc
commit ccb33d8aeb
27 changed files with 691 additions and 59 deletions

View file

@ -0,0 +1,25 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { PageWatchingVideoComponent } from './page-watching-video.component';
describe('PageWatchingVideoComponent', () => {
let component: PageWatchingVideoComponent;
let fixture: ComponentFixture<PageWatchingVideoComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ PageWatchingVideoComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(PageWatchingVideoComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});