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