mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-04-24 21:09:40 +00:00
26 lines
730 B
TypeScript
26 lines
730 B
TypeScript
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();
|
|
// });
|
|
});
|