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