blob: bb791b984a77ea8513fb5592c739ca7e8f5b9195 [file] [log] [blame]
Sean Condon0c577f62018-11-18 22:40:05 +00001import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2
3import { HostNodeSvgComponent } from './hostnodesvg.component';
4
5describe('HostNodeSvgComponent', () => {
6 let component: HostNodeSvgComponent;
7 let fixture: ComponentFixture<HostNodeSvgComponent>;
8
9 beforeEach(async(() => {
10 TestBed.configureTestingModule({
11 declarations: [ HostNodeSvgComponent ]
12 })
13 .compileComponents();
14 }));
15
16 beforeEach(() => {
17 fixture = TestBed.createComponent(HostNodeSvgComponent);
18 component = fixture.componentInstance;
19 fixture.detectChanges();
20 });
21
22 it('should create', () => {
23 expect(component).toBeTruthy();
24 });
25});