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