25 lines
648 B
TypeScript
25 lines
648 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { VideoGridComponent } from './video-grid.component';
|
|
|
|
describe('VideoGridComponent', () => {
|
|
let component: VideoGridComponent;
|
|
let fixture: ComponentFixture<VideoGridComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [ VideoGridComponent ]
|
|
})
|
|
.compileComponents();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(VideoGridComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|