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