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