mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-05-01 00:10:39 +00:00
26 lines
694 B
TypeScript
26 lines
694 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { InterfaceLabelComponent } from './interface-label.component';
|
|
|
|
describe('InterfaceLabelComponent', () => {
|
|
let component: InterfaceLabelComponent;
|
|
let fixture: ComponentFixture<InterfaceLabelComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ InterfaceLabelComponent ]
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(InterfaceLabelComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
// it('should create', () => {
|
|
// expect(component).toBeTruthy();
|
|
// });
|
|
});
|