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