mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-05-28 13:04:21 +00:00
25 lines
651 B
TypeScript
25 lines
651 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { DraggableComponent } from './draggable.component';
|
|
|
|
describe('DraggableComponent', () => {
|
|
let component: DraggableComponent;
|
|
let fixture: ComponentFixture<DraggableComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [DraggableComponent]
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(DraggableComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
// it('should create', () => {
|
|
// expect(component).toBeTruthy();
|
|
// });
|
|
});
|