UNPKG

pipeline-builder-demo

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