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