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