blob: d66b1eedf7e80ad00e86828b24adcddc6fbac3ea [file] [log] [blame]
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { NO_ERRORS_SCHEMA } from '@angular/core';
import { TestingModule } from '../../../testing/testing.module';
import { NodeViewerComponent } from './node-viewer.component';
describe('NodeViewerComponent', () => {
let component: NodeViewerComponent;
let fixture: ComponentFixture<NodeViewerComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [
TestingModule
],
declarations: [ NodeViewerComponent ],
schemas: [
/* avoid importing modules */
NO_ERRORS_SCHEMA
]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(NodeViewerComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});