Mercurial > hg > ugly-duckling
comparison src/app/waveform/waveform.component.spec.ts @ 6:ee4353d1aeeb
Add skeleton files for waveform component.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Wed, 26 Oct 2016 16:57:51 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
5:8d82412dfd50 | 6:ee4353d1aeeb |
---|---|
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 { WaveformComponent } from './waveform.component'; | |
7 | |
8 describe('WaveformComponent', () => { | |
9 let component: WaveformComponent; | |
10 let fixture: ComponentFixture<WaveformComponent>; | |
11 | |
12 beforeEach(async(() => { | |
13 TestBed.configureTestingModule({ | |
14 declarations: [ WaveformComponent ] | |
15 }) | |
16 .compileComponents(); | |
17 })); | |
18 | |
19 beforeEach(() => { | |
20 fixture = TestBed.createComponent(WaveformComponent); | |
21 component = fixture.componentInstance; | |
22 fixture.detectChanges(); | |
23 }); | |
24 | |
25 it('should create', () => { | |
26 expect(component).toBeTruthy(); | |
27 }); | |
28 }); |