UNPKG

pipeline-builder-demo

Version:
29 lines (23 loc) 826 B
/* 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 { RightEditorComponent } from './right-editor.component'; describe('RightEditorComponent', () => { let component: RightEditorComponent; let fixture: ComponentFixture<RightEditorComponent>; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ RightEditorComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(RightEditorComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });