annotate src/app/feature-extraction-menu/feature-extraction-menu.component.spec.ts @ 149:38abcb4830f1
Use tick layer instead of marker layer for instants (it's faster)
author |
Chris Cannam <cannam@all-day-breakfast.com> |
date |
Mon, 20 Mar 2017 15:25:54 +0000 |
parents |
13f5f228ed98 |
children |
|
rev |
line source |
dev@44
|
1 /* tslint:disable:no-unused-variable */
|
dev@44
|
2 import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
dev@44
|
3 import { By } from '@angular/platform-browser';
|
dev@44
|
4 import { DebugElement } from '@angular/core';
|
dev@44
|
5
|
dev@44
|
6 import { FeatureExtractionMenuComponent } from './feature-extraction-menu.component';
|
dev@44
|
7
|
dev@44
|
8 describe('FeatureExtractionMenuComponent', () => {
|
dev@44
|
9 let component: FeatureExtractionMenuComponent;
|
dev@44
|
10 let fixture: ComponentFixture<FeatureExtractionMenuComponent>;
|
dev@44
|
11
|
dev@44
|
12 beforeEach(async(() => {
|
dev@44
|
13 TestBed.configureTestingModule({
|
dev@44
|
14 declarations: [ FeatureExtractionMenuComponent ]
|
dev@44
|
15 })
|
dev@44
|
16 .compileComponents();
|
dev@44
|
17 }));
|
dev@44
|
18
|
dev@44
|
19 beforeEach(() => {
|
dev@44
|
20 fixture = TestBed.createComponent(FeatureExtractionMenuComponent);
|
dev@44
|
21 component = fixture.componentInstance;
|
dev@44
|
22 fixture.detectChanges();
|
dev@44
|
23 });
|
dev@44
|
24
|
dev@44
|
25 it('should create', () => {
|
dev@44
|
26 expect(component).toBeTruthy();
|
dev@44
|
27 });
|
dev@44
|
28 });
|