import { ComponentFixture, TestBed } from '@angular/core/testing'; import { PictureList } from './picture-list'; describe('PictureList', () => { let component: PictureList; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [PictureList], }).compileComponents(); fixture = TestBed.createComponent(PictureList); component = fixture.componentInstance; await fixture.whenStable(); }); it('should create', () => { expect(component).toBeTruthy(); }); });