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