Mercurial > hg > ugly-duckling
view src/app/waveform/waveform.component.spec.ts @ 131:4eb3cc32f6c0
Add dispose method
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Thu, 16 Mar 2017 12:35:43 +0000 |
parents | ee4353d1aeeb |
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 { WaveformComponent } from './waveform.component'; describe('WaveformComponent', () => { let component: WaveformComponent; let fixture: ComponentFixture<WaveformComponent>; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ WaveformComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(WaveformComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });