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