/* tslint:disable:no-unused-variable */ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { By } from '@angular/platform-browser'; import { DebugElement } from '@angular/core'; import { SkillbarComponent } from './skillbar.component'; describe('SkillbarComponent', () => { let component: SkillbarComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ SkillbarComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(SkillbarComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });