Mercurial > hg > ugly-duckling
view src/app/playback-control/playback-control.component.spec.ts @ 225:16d19c12e42f
Remove redundant injection of feature extraction service.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Fri, 21 Apr 2017 12:58:55 +0100 |
parents | d9c0a1ca005c |
children |
line wrap: on
line source
/* 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 { PlaybackControlComponent } from './playback-control.component'; describe('PlaybackControlComponent', () => { let component: PlaybackControlComponent; let fixture: ComponentFixture<PlaybackControlComponent>; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ PlaybackControlComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(PlaybackControlComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });