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