Mercurial > hg > ugly-duckling
comparison src/app/audio-file-open/audio-file-open.component.spec.ts @ 13:b12e78d6185e
Add a component for opening local audio files, unfinished and of course untested. Expect cross-cutting concerns to follow.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Thu, 27 Oct 2016 13:36:09 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
12:1244f556512f | 13:b12e78d6185e |
---|---|
1 /* tslint:disable:no-unused-variable */ | |
2 import { async, ComponentFixture, TestBed } from '@angular/core/testing'; | |
3 import { By } from '@angular/platform-browser'; | |
4 import { DebugElement } from '@angular/core'; | |
5 | |
6 import { AudioFileOpenComponent } from './audio-file-open.component'; | |
7 | |
8 describe('AudioFileOpenComponent', () => { | |
9 let component: AudioFileOpenComponent; | |
10 let fixture: ComponentFixture<AudioFileOpenComponent>; | |
11 | |
12 beforeEach(async(() => { | |
13 TestBed.configureTestingModule({ | |
14 declarations: [ AudioFileOpenComponent ] | |
15 }) | |
16 .compileComponents(); | |
17 })); | |
18 | |
19 beforeEach(() => { | |
20 fixture = TestBed.createComponent(AudioFileOpenComponent); | |
21 component = fixture.componentInstance; | |
22 fixture.detectChanges(); | |
23 }); | |
24 | |
25 it('should create', () => { | |
26 expect(component).toBeTruthy(); | |
27 }); | |
28 }); |