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