import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { TabContainerComponent } from './tab-container.component'; import { TabContainerModule } from './tab-container.module'; describe('TabContainerComponent', () => { let component: TabContainerComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ imports: [TabContainerModule], }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(TabContainerComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });