comparison 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
comparison
equal deleted inserted replaced
43:c6f3ec87915a 44:13f5f228ed98
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 { FeatureExtractionMenuComponent } from './feature-extraction-menu.component';
7
8 describe('FeatureExtractionMenuComponent', () => {
9 let component: FeatureExtractionMenuComponent;
10 let fixture: ComponentFixture<FeatureExtractionMenuComponent>;
11
12 beforeEach(async(() => {
13 TestBed.configureTestingModule({
14 declarations: [ FeatureExtractionMenuComponent ]
15 })
16 .compileComponents();
17 }));
18
19 beforeEach(() => {
20 fixture = TestBed.createComponent(FeatureExtractionMenuComponent);
21 component = fixture.componentInstance;
22 fixture.detectChanges();
23 });
24
25 it('should create', () => {
26 expect(component).toBeTruthy();
27 });
28 });