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