import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { DraggableComponent } from './draggable.component'; describe('DraggableComponent', () => { let component: DraggableComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [DraggableComponent] }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(DraggableComponent); component = fixture.componentInstance; fixture.detectChanges(); }); // it('should create', () => { // expect(component).toBeTruthy(); // }); });