blob: df9b67fa7ce6dd5a072e473fcbc947c11c35be8c [file] [log] [blame]
import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
import { NO_ERRORS_SCHEMA } from '@angular/core';
import { TestingModule } from '../../../testing/testing.module';
import { WorkflowDagComponent } from './workflow-dag.component';
describe('WorkflowDagComponent', () => {
let component: WorkflowDagComponent;
let fixture: ComponentFixture<WorkflowDagComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [TestingModule],
declarations: [WorkflowDagComponent],
schemas: [
/* avoid importing modules */
NO_ERRORS_SCHEMA,
],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(WorkflowDagComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
xit('should create', () => {
expect(component).toBeTruthy();
});
});