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