UNPKG

markgojs

Version:

Interactive diagrams, charts, and graphs, such as trees, flowcharts, orgcharts, UML, BPMN, or business diagrams

26 lines (20 loc) 678 B
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { DiagramEditorComponent } from './diagram-editor.component'; describe('DiagramEditorComponent', () => { let component: DiagramEditorComponent; let fixture: ComponentFixture<DiagramEditorComponent>; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ DiagramEditorComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(DiagramEditorComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });