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