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