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