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