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