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