Skip to content
Snippets Groups Projects
files.component.spec.ts 621 B
Newer Older
  • Learn to ignore specific revisions
  • import { async, ComponentFixture, TestBed } from '@angular/core/testing';
    
    
    Martin Mechtel's avatar
    Martin Mechtel committed
    import { FilesComponent } from './files.component';
    
    Martin Mechtel's avatar
    Martin Mechtel committed
    describe('FilesComponent', () => {
      let component: FilesComponent;
      let fixture: ComponentFixture<FilesComponent>;
    
    
      beforeEach(async(() => {
        TestBed.configureTestingModule({
    
    Martin Mechtel's avatar
    Martin Mechtel committed
          declarations: [ FilesComponent ]
    
        })
        .compileComponents();
      }));
    
      beforeEach(() => {
    
    Martin Mechtel's avatar
    Martin Mechtel committed
        fixture = TestBed.createComponent(FilesComponent);
    
        component = fixture.componentInstance;
        fixture.detectChanges();
      });
    
      it('should create', () => {
        expect(component).toBeTruthy();
      });
    });