Spaces:
Runtime error
Runtime error
| 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(); | |
| }); | |
| }); | |