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