pipeline-builder-demo
Version:
Pipeline Builder
29 lines (23 loc) • 854 B
text/typescript
/* 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 { GraphicalEditorComponent } from './graphical-editor.component';
describe('GraphicalEditorComponent', () => {
let component: GraphicalEditorComponent;
let fixture: ComponentFixture<GraphicalEditorComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ GraphicalEditorComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(GraphicalEditorComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});