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