paperstocode / frontend /src /app /uploader /uploader.component.spec.ts
reibs's picture
hugging face update
f91510c
raw
history blame contribute delete
613 Bytes
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { UploaderComponent } from './uploader.component';
describe('UploaderComponent', () => {
let component: UploaderComponent;
let fixture: ComponentFixture<UploaderComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ UploaderComponent ]
})
.compileComponents();
fixture = TestBed.createComponent(UploaderComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});