import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { NodeComponent } from './node.component'; describe('NodeComponent', () => { let component: NodeComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ NodeComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(NodeComponent); component = fixture.componentInstance; fixture.detectChanges(); }); // it('should create', () => { // expect(component).toBeTruthy(); // }); });