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