Introduce components directories

This commit is contained in:
ziajka
2018-06-27 10:34:15 +02:00
parent 4f3ad287f0
commit e82b4e48cd
65 changed files with 115 additions and 115 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();
// });
});