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