UNPKG

pipeline-builder-demo

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