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