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