import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { GalleryGridComponent } from './gallery-grid.component'; describe('GalleryGridComponent', () => { let component: GalleryGridComponent; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ declarations: [ GalleryGridComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(GalleryGridComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });