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