This repository has been archived on 2026-05-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
PolyNotFound/src/app/user/watching/rectangle-watching-video/rectangle-watching-video.component.spec.ts
2021-11-21 01:30:53 +01:00

25 lines
740 B
TypeScript

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