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