commencement de la page watching

This commit is contained in:
MiharyR 2021-11-21 01:36:54 +01:00
parent ccb33d8aeb
commit 3dce1f6865
5 changed files with 0 additions and 45 deletions

View file

@ -1 +0,0 @@
<p>rectangle-watching-video works!</p>

View file

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

View file

@ -1,15 +0,0 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-rectangle-watching-video',
templateUrl: './rectangle-watching-video.component.html',
styleUrls: ['./rectangle-watching-video.component.scss']
})
export class RectangleWatchingVideoComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}