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