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