Newer
Older
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
describe('FilesComponent', () => {
let component: FilesComponent;
let fixture: ComponentFixture<FilesComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
})
.compileComponents();
}));
beforeEach(() => {
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});