/* 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 { StarRatingComponent } from './star-rating.component'; describe('StarRatingComponent', () => { let component: StarRatingComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ StarRatingComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(StarRatingComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });