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