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