annotate src/app/feature-extraction-menu/feature-extraction-menu.component.spec.ts @ 44:13f5f228ed98
Add a component for the feature extraction menu, and start setting up some comms with the worker. Currently populating a select box with list of extractors from hardcoded server.
author |
Lucas Thompson <dev@lucas.im> |
date |
Fri, 02 Dec 2016 16:55:14 +0000 |
parents |
|
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 });
|