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