Merge with different approach

This commit is contained in:
ziajka
2018-11-20 13:43:59 +01:00
parent 27946c6a8e
commit 311ef8c348
90 changed files with 2133 additions and 84 deletions

View File

@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { NodeSelectInterfaceComponent } from './node-select-interface.component';
describe('NodeSelectInterfaceComponent', () => {
let component: NodeSelectInterfaceComponent;
let fixture: ComponentFixture<NodeSelectInterfaceComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ NodeSelectInterfaceComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(NodeSelectInterfaceComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
// it('should create', () => {
// expect(component).toBeTruthy();
// });
});