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