UNPKG

pipeline-builder-demo

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