blob: bb791b984a77ea8513fb5592c739ca7e8f5b9195 [file] [log] [blame]
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { HostNodeSvgComponent } from './hostnodesvg.component';
describe('HostNodeSvgComponent', () => {
let component: HostNodeSvgComponent;
let fixture: ComponentFixture<HostNodeSvgComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ HostNodeSvgComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(HostNodeSvgComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});