Mercurial > hg > ugly-duckling
view src/app/playback-control/playback-control.component.spec.ts @ 21:d9c0a1ca005c
Prototype some playback controls, and tabbed menus in the sidebar.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Fri, 28 Oct 2016 16:27:25 +0100 |
parents | |
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(); }); });